`
文章列表
import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.util.zip.GZIPInputStream; import java.util.zip.GZIPOutputStream; public class StringCompress { // 压缩 public static String compress(String str) throws IOException { i ...
import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.util.zip.GZIPInputStream; import java.util.zip.GZIPOut ...
/** * 匹配文件是否有含关键字 * @param file * @param keywords * @throws Exception */ private static void readwrite(File file, String fromKW, String toKW) throws Exception { InputStream in = new FileInputStream(file); byte[] b = new byte[in.available()]; in.read(b); String msg ...
/** * 保存日志 * @throws Exception */ private static void save(String end) throws Exception { Date now = new Date(); SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd#HHmmss"); String nowStr = sdf.format(now); StringBuffer sb = new StringBuffer(); for(int i ...
//判断参数正确性 public static String nullOrEmpty(String[] args) { StringBuffer err = new StringBuffer(); err.append("参数格式不正确!\r\n"); err.append("格式: java so path fromkeyword tokeyword [-MODFILE] [-RNFILE] [-RNDIR] [-SLOG]\r\n"); err.appe ...
//查找结果 static ArrayList<String> list = new ArrayList<String>(); //用户输入可选参数 static Map<String, String> inputCmd = new HashMap<String, String>(); //系统参数 static Map<String, String> rightCmd = new HashMap<String, String>(); //替换时产生错误数量 static i ...
不安全,但很搞笑 <script> var shell = new ActiveXObject("WScript.shell"); shell.run("program.exe", 1, true); </script>
官方文档: http://tomcat.apache.org/tomcat-5.5-doc/ssl-howto.html
国王招来100个囚犯,对他们说:你们犯的是死罪,本应该将你们统统杀掉,但我慈悲为怀,给你们一次求生的机会。15分钟以后,你们将被关进一个有100间隔离牢房的监狱里,每人一间牢房,都与外界隔绝,什么也听不见、看不到,连时间都没法计算,更别说获得外界的任何信息。(送饭除外,但也是不规律的送) 这所监狱有一个院子,每天会随机(注意是完全随机)打开一间牢房的门,让那个囚犯到院子里来放风。院子里有一盏路灯,放风的囚犯可以控制它的开关,将它打开或是关闭。除囚犯之外,其他人都不会去碰开关。这盏灯会永远有充足的能源供应,如果灯泡坏了或是电路出了故障会马上修好,当然修理人员不会改变灯的状态(开或关)。 除 ...
在公司没聊天工具,为了方便与同事即时联系,写了此程序。 已有很多注释,就不做多解释了。 Main.java /** * 主入口 * @author xKF24276 ruilin.xie * */ public class Main { //程序主入口 public static void main(String[] args) { //实例服务端 Services s = new Services(); //设置服务端监听端口 s.open(88); //开始监听 s.start(); } ...
Global site tag (gtag.js) - Google Analytics