上一页 1 2 3 4 5 6 ··· 11 下一页
摘要: package split; import java.io.BufferedOutputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.RandomAccessFile; impo 阅读全文
posted @ 2024-11-10 02:40 基础狗 阅读(0) 评论(0) 推荐(0) 编辑
摘要: Map.Entry<Byte, Integer> tmp = new HashMap<>(); for (Map.Entry<Byte, Integer> tmp : map.entrySet()) { System.out.println("[key="+tmp.getKey()+"]"+"[va 阅读全文
posted @ 2024-11-10 02:35 基础狗 阅读(4) 评论(0) 推荐(0) 编辑
摘要: Path path = Paths.get(); byte[] bytes = Files.readAllBytes(path); 阅读全文
posted @ 2024-11-10 02:28 基础狗 阅读(8) 评论(0) 推荐(0) 编辑
摘要: RandomAccessFile randomAccessFile = new RandomAccessFile("C:\\Users\\Administrator\\Desktop\\test.pdf","r"); int point = 0;//最开始 long last = 0;//最后 lo 阅读全文
posted @ 2024-11-10 02:25 基础狗 阅读(3) 评论(0) 推荐(0) 编辑
摘要: byte[] buffer = new byte[1024 * 1024];//缓冲区 BufferedOutputStream bufferedOutputStream = new BufferedOutputStream( new FileOutputStream( new File() ) ) 阅读全文
posted @ 2024-11-10 02:19 基础狗 阅读(1) 评论(0) 推荐(0) 编辑
摘要: File file = new File(); FileInputStream fileInputStream = new FileInputStream(file); InputStreamReader inputStreamReader = new InputStreamReader(fileI 阅读全文
posted @ 2024-11-09 23:19 基础狗 阅读(3) 评论(0) 推荐(0) 编辑
摘要: str = 'skdaskerkjsalkj' list = [] for i in range(len(str)): list.append(str[i]) list2 = sorted(list) print(list2) for i in range(len(list)): flag2 = F 阅读全文
posted @ 2024-11-06 21:40 基础狗 阅读(21) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2024.cnblogs.com/blog/3246720/202411/3246720-20241102015037571-1143526725.png) ![](https://img2024.cnblogs.com/blog/3246720/202411/3246720-20241102015043173-1251615813.png) ![](https:// 阅读全文
posted @ 2024-11-02 01:51 基础狗 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1代码 1.1编码 package File_h; import java.io.BufferedWriter; import java.io.File; import java.io.FileWriter; import java.nio.file.Files; import java.nio.f 阅读全文
posted @ 2024-11-02 01:14 基础狗 阅读(2) 评论(0) 推荐(0) 编辑
摘要: package FirstSample; public class FirstSample { public static void main(String[] args) { System.out.println("We will not use 'Hello, World!'"); } } 上述 阅读全文
posted @ 2024-10-28 09:37 基础狗 阅读(5) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 11 下一页