上一页 1 ··· 3 4 5 6 7 8 9 下一页
摘要: 1、创建类TimerTestimport java.util.Timer;import java.util.TimerTask;public class TimerTest { private final Timer timer = new Timer(); public voi... 阅读全文
posted @ 2015-09-04 15:49 星星故乡 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 1、新建java项目log4Test2、新建目录lib,把log4j-1.2.9.jar包放入lib目录3、右键工程,选择Properties->Java Build Path->Libraries->Add JARs...,选择lib下的log4j-1.2.9.jar4、在src目录下新建两个文件... 阅读全文
posted @ 2015-09-04 09:38 星星故乡 阅读(611) 评论(1) 推荐(0) 编辑
摘要: 下载java包:sqlite-jdbc-3.7.2.jar,放到java工程目录lib下如下代码实例:import java.sql.*;import org.sqlite.JDBC;/** * 这是个非常简单的SQLite的Java程序, * 程序中创建数据库、创建表、然后插入数据, * 最后读出... 阅读全文
posted @ 2015-08-31 21:54 星星故乡 阅读(11457) 评论(0) 推荐(0) 编辑
摘要: 转自:http://blog.163.com/jackswu@yeah/blog/static/1406291232012575743301/java的Runtime.getRuntime().exec(commandText)可以调用执行cmd指令cmd /c dir 是执行完dir命令后关闭命令... 阅读全文
posted @ 2015-08-31 21:21 星星故乡 阅读(538) 评论(0) 推荐(0) 编辑
摘要: 转自:http://blog.csdn.net/haobo920/article/details/5921621java中static变量和方法的总结java中一切皆是对象一个类中对象的定义一般都是分一下的两步来进行的:1/ A a; //定义了一个类A的引用2/ a=new A("10","256... 阅读全文
posted @ 2015-08-30 21:29 星星故乡 阅读(4437) 评论(0) 推荐(0) 编辑
摘要: 转自http://blog.sina.com.cn/s/blog_4a9f789a0100ik3p.html一.获得控制台用户输入的信息public String getInputMessage() throws IOException...{ System.out.println("请输入您... 阅读全文
posted @ 2015-08-30 18:11 星星故乡 阅读(331) 评论(0) 推荐(1) 编辑
摘要: 阅读全文
posted @ 2015-08-30 15:56 星星故乡 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 创建PropUtil类import java.io.IOException;import java.io.InputStream;import java.util.Properties;public class PropUtil { /** * 获取config文件 * @pa... 阅读全文
posted @ 2015-08-30 12:52 星星故乡 阅读(178) 评论(0) 推荐(0) 编辑
摘要: package conection;import java.util.Iterator;import java.util.LinkedList;import java.util.List;public class Ergodic { public static void main(String[] ... 阅读全文
posted @ 2015-08-30 10:59 星星故乡 阅读(287) 评论(0) 推荐(0) 编辑
摘要: Linux关闭防火墙命令1) 永久性生效,重启后不会复原开启:chkconfig iptables on关闭:chkconfig iptables off2) 即时生效,重启后复原开启:service iptables start关闭:service iptables stop 阅读全文
posted @ 2015-06-29 14:46 星星故乡 阅读(14839) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 下一页