摘要:
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... 阅读全文