V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  AdminNB  ›  全部回复第 2 页 / 共 2 页
回复总数  25
1  2  
2022-05-01 10:14:44 +08:00
回复了 pdog18 创建的主题 程序员 有没有想学 Android 的 iOS,能教 Android 的我 iOS 吗?
中国人教英国人学汉语,英国人教中国人学英语
2022-04-11 10:36:30 +08:00
回复了 lsk569937453 创建的主题 程序员 如何快速向文件中写入 1 亿个 ip?
瞎写了写,不知道对不对



public class Main {
@SneakyThrows
public static void main(String[] args) {
byte[][] ip = new byte[1000000][4];
long start = System.currentTimeMillis();
BufferedOutputStream bufferedOutputStream = new BufferedOutputStream(new FileOutputStream("D:\\Cache\\ip.bin"));
int count = 0;
for (int i = 0; i < 255; i++) {
for (int j = 0; j < 255; j++) {
for (int k = 0; k < 255; k++) {
for (int l = 0; l < 255; l++) {
ip[count][0] = (byte) i;
ip[count][1] = (byte) j;
ip[count][2] = (byte) k;
ip[count][3] = (byte) l;
count++;
if (count % 1000000 == 0) {
for (int m = 0; m < 1000000; m++) {
bufferedOutputStream.write(ip[m]);
}
count = 0;
}
}
}
}
}
bufferedOutputStream.close();
long end = System.currentTimeMillis();
System.out.println(end - start);
}
}

时间:144663

占用空间:15.7 GB (16,912,003,072 字节)
小米的 865:10->11->12 ,13 应该不给更新了
2022-01-14 21:33:12 +08:00
回复了 villivateur 创建的主题 程序员 求推荐靠谱的域名邮箱服务
自建吧😂
2021-12-03 21:49:17 +08:00
回复了 ha2ha 创建的主题 程序员 一个++x 的疑问
未定义行为( UB )
1  2  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   862 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 14ms · UTC 18:05 · PVG 02:05 · LAX 10:05 · JFK 13:05
Developed with CodeLauncher
♥ Do have faith in what you're doing.