`
冰与火的抉择
  • 浏览: 11940 次
  • 性别: Icon_minigender_2
  • 来自: 西安
文章分类
社区版块
存档分类
最新评论
文章列表
<div class="iteye-blog-content-contain" style="font-size: 14px"></div> <pre> // templatePath模板文件存放路径 // templateName 模板文件名称 // filename 生成的文件名称 public static void analysisTemplate(String templatePath, String templateName, String fileName, Map<?, ?> roo ...
DELIMITER // CREATE PROCEDURE insertmem() BEGIN DECLARE num INT; SET num = 100; WHILE num<301 DO   #301 INSERT INTO t_member(member_ID,MEMBER_NAME,CREATE_TIME) VALUES(num,CONCAT("test",num),NOW()); SET num=num+1; END WHILE; END // CALL insertmem();   #调用
   private static String localIp(){         String ip = null;         Enumeration allNetInterfaces;         try {             allNetInterfaces = NetworkInterface.getNetworkInterfaces();                        while (allNetInterfaces.hasMoreElements()) {                 NetworkInterface netInterface ...
来源:http://www.cnblogs.com/xdp-gacl/p/3750965.html 这个网址写的特别好   自己的: cmd 1.查看证书 keytool -list -keystore 证书库名 输入pwd 密钥库类型:JKS 密钥库提供方:SUN 2.将证书库中的某个证书导出。起名bieming keytool -export -alias bieming -keystore 证书库名 -file bieming 3.导入 keytool -import -keystore 证书库名 -file bieming -alias bieming -s ...
import java.io.File;import java.util.List; import org.dom4j.Document;import org.dom4j.DocumentException;import org.dom4j.Node;import org.dom4j.io.SAXReader; public class ReadXml {  public static void main(String[] args) throws DocumentException {  File file = new File("E:/workspace3.7/com.hu ...
/**  * 日期加一天    yyyy-MM-dd HH:mm:ss  * @param args  * @throws ParseException   */ public static void main(String[] args) throws ParseException {  String str = "20150630";  Date beginTime = new SimpleDateFormat("yyyyMMdd").parse(str);  Calendar c = Calendar.getInstance();  c.setT ...
public class Main { public static void main(String[] args) { new JmsStartThread().start(); } } public class JmsStartThread extends Thread{ public void run(){ TimeTask.getInstance().startTimeTask(); } } import java.util.concurrent.Executors; import java.util.concurrent.ScheduledExecutorSer ...
加密,解密的 加密:echo 密文 | openssl base64 -d 解密:echo 明文 | openssl base64 查看端口号被谁占用 netstat -apn | grep port netstat -apn | grep port | grep ip 查询: tail -f a.log tail -f a.log |grep "com.*" tailf a.log $(运行命令)    pwd:获取当前路径 echo $?  判断上一个命令是否运行成功,0:成功 if   fi -f  是否文件 -e  是否存在 "$1" ...
张学友:情书 刘惜君:我恨快乐 郁可唯:时间煮雨 刘力扬:手放开        旅途 后弦:很有爱 孙燕姿:遇见 王婧:是不是爱情来过 Maroon5:maps 寂寞的人伤心的歌 不再见 夜空中最亮的星 shake it off breathless pretty boy
<div class="iteye-blog-content-contain" style="font-size: 14px"> public class javaLogServer{ public static void main(String args[]){ //存储接收数据    byte[] logBuffer = new byte[2048];    int receivedMessage = 0;    //打开文件向里面写入接收的日志 File outFile = new File("path"); W ...
语言是自己组织的。可能不专业,请读者见谅 有不对的地方,也欢迎大家指正 JMS有两种方式,一种是pub/sub,一种是(后续补充) 主要讨论pub/sub方式 pub/sub方式的工作流程: 首先订阅者(subscriber)向JMS容器订阅需要订阅的主题(topic),消息发布者发布消息,订阅了该主题的订阅者都能收到这个消息。(这是一对多的方式,类似于广播,个人理解),默认情况下,该消息不是持久的。即消息一发出,不管有没有人接受,都不会保存下来,即订阅者只能接收到自己订阅之后发布者发出的消息。 如果出现意外情况,订阅者突然断线了,发布者发布了一条消息,订阅者再连接上是不会收到消息的。解决这 ...
java.util包 生成唯一id的 UUID uuid = UUID.randomUUID(); String.format("%s%s",str,str); 获取当前文件路径: File dir = new File(""); String path = dir.getCanonicalPath();(java.io.File) 根据实际情况,可以修改为自己想要的目录 File file = new File(path); InputStream inSteam = new BufferedInputStream(new FileInputStr ...
/** * 心得:一定要关闭流,inStream * 那也就是用变量接收文件中的值 * @author Administrator * */ public class HttpClientDemo { private String trustStore = "证书名"; private String keyStorePwd = "pwd"; public void start(){ InputStream inStream = null; try { //加载配置文件 Properties prop = ne ...
Global site tag (gtag.js) - Google Analytics