`
tfkbyhq
  • 浏览: 5654 次
  • 性别: Icon_minigender_1
  • 来自: 成都
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表
public class FileTest {    public static void main(String[] args) {     System.out.println(Thread.currentThread().getContextClassLoader().getResource(""));     System.out.println(FileTest.class.getClassLoader().getResource(""));     System.out.println(ClassLoader.getSystemResource ...
有时候面试题里会出现下面的题: short i; i=i+1; 这里是会出错的,因为1默认是int型的,short与int相加,默认会自动提升short到int型,也就是i+1的结果是int型,然后付给i,这里就会出错,因为能小转大,但是大不能转小嘛,由于Java里特殊的机制,下面是正确的。 short i; i+=1; 面试题里经常出现哦,能发现还能回答原因能给考官1个好的印象
1.引入lucene包,用到了Junit,包搞进来就可以了 2.先跑建立索引文件的单元测试,有了索引才能查询嘛,然后在跑下面的检索数据方法 3.目录根据自己需要更改哦 private final String indexPath = "E:/lucene"; private final String searchPath = "E:/123"; @Test /** * 建立索引文件 */ public void createIndexFiles() throws Exception { Directory d = n ...
运行eclipse时出现错误提示框错误提示大概如下: MyEclipse has detected that less than 5% of the 64MB of Perm Gen (Non-heap memory) space remains. It is strongly recommended that you exit and restart MyEclipse with new virtual machine memory paramters to increase this memory. Failure to do so can result in data loss. The ...
一个比较简单的题目,将一字符串复制至另一字符串,要求去掉字符串中多余的空格,只留一个。 这是育碧的开发部门(智乐公司)招聘软件工程师的笔试题。意在考察算法设计能力和字符操作。不多说了,看代码: /** * 智乐软件笔试题目 * 将一字符串复制至另一字符串,要求去掉字符串中多余的空格; * 无论有几个空格,都输出为1个空格。 * * */ public class DeleteSpace { public static void main(String[] args)throws Exception { String string="new ada ...
Global site tag (gtag.js) - Google Analytics