java
Gaibbb
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
use eclipse to link to MySQL on macOS
1.project -> build path -> add external archives -> mysql-connector-java-5.1.49.jar you can download this pakage from https://dev.mysql.com/downloads/workbench/ package jdbcProject; import java.sql.*; public class mySql { public stat.原创 2020-05-22 19:42:38 · 230 阅读 · 0 评论 -
java io stream
binary file input FileInputStream BufferedInputStream InputStream in = new BufferedInputStream (new FileInputStream (fileName)); byte[] data = new byte[1024]; int length = in.read(data); read() returns length of binary number it gets and save the number原创 2020-05-22 19:43:42 · 238 阅读 · 0 评论
分享