File类测试
//根据指定的文件名和路径创建File对象
File file = new File("myFile.txt");
//file.exists();检测文件是否存在
boolean exists = file.exists();
System.out.println(exists);
//按照file对象指定的路径和文件名创建一个新的文件
...
分类:
编程语言 时间:
2014-06-05 09:31:59
阅读次数:
293
hibbernate的异常的一种情况
org.dom4j.DocumentException: Connection timed out
Connection timed out: connect Nested exception: Connection timed out: connect
出现这个异常的原因之一是读取配置文件超时。通常是在读...
分类:
系统相关 时间:
2014-06-05 08:52:44
阅读次数:
371
集合框架总览:
Collection 接口常用方法
//1.add()向集合中添加数据
c.add(apple01);
c.add(apple02);
c.add(apple03);
c.add(apple04);
c.add(apple05);
//2.isEmepty()检测当前集合是否为空
boolean empty = c.isEmpty();
System.out.println("i...
分类:
编程语言 时间:
2014-06-05 08:52:09
阅读次数:
323
http://jxls.sourceforge.net/ InputStream
templateInput = null; InputStream in = null; OutputStream out = null; try {
templateInput ...
分类:
其他好文 时间:
2014-06-03 09:40:13
阅读次数:
212
【题目】Given a set of files, of which the sizes
will not exceed 10 Gigabytes, find out whether an input string appears or
not.Your program is judged base...
分类:
其他好文 时间:
2014-06-03 07:15:17
阅读次数:
472
问题
输入:一个表示数字的字符串,需要考虑不同的输入形式。
输出:对应的整数
特殊输入形式:
1.输入开始几个字符为空格
2.考虑正负号
3.数字字符不属于[0,9]时,输出当前结果
4.字符串代表的数字大于INT_MAX或者小于INT_MIN时输出INT_MAX或者INT_MIN。
class Solution {
// out of range...
分类:
其他好文 时间:
2014-06-03 06:30:14
阅读次数:
314
题目一:CombinationsGiven two integersnandk, return all
possible combinations ofknumbers out of 1 ...n.For example,Ifn= 4 andk= 2, a
solution is:[ [2,4],....
分类:
其他好文 时间:
2014-05-31 20:01:02
阅读次数:
455
Hibernate provides SQL logging out of the box,
but such logging only shows prepared statements, and not the actual SQL queries
sent to the database.It...
分类:
数据库 时间:
2014-05-31 16:47:16
阅读次数:
514
ProblemYou want to point out a specific
location on a map to the user.SolutionUse built-in map view annotations. Follow
these steps:1. Create a new cl...
分类:
其他好文 时间:
2014-05-31 12:30:19
阅读次数:
240
#建立 CA 目录结构mkdir -p
./demoCA/{private,newcerts}touch ./demoCA/index.txtecho 01 >
./demoCA/serial#生成 CA 的 RSA 密钥对openssl genrsa -des3 -out ./demoCA/pri...
分类:
其他好文 时间:
2014-05-31 08:16:41
阅读次数:
252