09 2015 档案
摘要:svn更新的时候断电,下次在更新出现svn: sqlite: database disk image is malformed 这种悲催的事情竟然发生了解决办法:
阅读全文
摘要:读取.properties 文件 配置文件的一种,内容以键值对的形式存在,且每个键值对独占一行。#号作为行注释的起始标志,中文注释会自动进行unicode编码。示例:# ip and port of server socketip=127.0.0.1port=9999# error messagem...
阅读全文
摘要:Given an arraynums, write a function to move all0's to the end of it while maintaining the relative order of the non-zero elements.For example, givenn...
阅读全文
摘要:实现思路: 实现Java读取TXT文件中的内容并存到内存,将内存中的数据和mysql 数据库里面某张表数据的字段做一个比较,如果比较内存中的数据在mysql 里存在则不做处理,如果不存在则将该数据插入mysql数据库中步骤1、读取文本数据 给一个string 返回值步骤2、查询mysql 表中数据 ...
阅读全文
摘要:public static String url = null; public static String username = null; public static String password = null; public static Connection conn; ...
阅读全文
摘要:import java.io.BufferedReader;import java.io.ByteArrayInputStream;import java.io.File;import java.io.FileReader;import java.io.IOException;import java...
阅读全文
摘要:Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the two nu...
阅读全文
摘要:实现读取TXT文件中的内容然后存到内存,然后将内存中的数据和mysql 数据库里面某张表数据的字段做一个比较,如果比较内存中的数据在mysql 里存在则不做处理,如果不存在则将该数据插入mysql数据库中思路:先将数据存储在mysql 新建的一张临时表中,然后在将临时表中的数据和数据库中的数据做比较...
阅读全文
摘要:在拼写sql的 时候,mysql字段如果需要添加当前时间可以用NOW() 函数 // String sql = ("insert into tablename(content, createtime) values ('阿本组', NOW())");即可
阅读全文
摘要:1、按字节读取文件内容2、按字符读取文件内容3、按行读取文件内容4、随机读取文件内容public class ReadFromFile { /** * 以字节为单位读取文件,常用于读二进制文件,如图片、声音、影像等文件。 */ public static void rea...
阅读全文
摘要:需要爬取http://toutiao.com/i6192092485658378754/数据问题1:获得 页面的所有数据,并且过滤掉不需要的部分,或者指定需要的
阅读全文
摘要:HtmlCleaner cleaner = new HtmlCleaner(); TagNode node = cleaner.clean(new URL("http://finance.sina.com.cn/money/nmetal/20091209/1...
阅读全文
摘要:public static String url = "jdbc:mysql://ip/database?characterEncoding=UTF-8"; //在database 后面加上?characterEncoding=UTF-8 就可以解决java 插入数据中文乱码问题 publi...
阅读全文
摘要:项目中要用到json-lib,mvnrepository.com查找它的dependency时结果如下:xml 代码 net.sf.json-lib json-lib 2.4 但是在instal...
阅读全文
摘要:由于ik没有歧义分词的功能,打算用anjs 对前端传递过来的数据用anjs进行分词anjs 操作文档官网地址:http://nlpchina.github.io/ansj_seg/刚刚开始由于jar包问题折腾了一会,所以将jar 共享出来jar 包下载地址:http://yunpan.cn/cmuT...
阅读全文