Java基础之写文件——缓冲区中的多条记录(PrimesToFile3)

控制台程序,上一条博文(PrimesToFile2)每次将一个素数写入到文件中,所以效率不是很高。最好是使用更大的缓冲区并加载多个素数。

本例重复使用三个不同的视图缓冲区加载字节缓冲区并尽可能加入更多的素数,推荐使用这种方式。

 1 import static java.lang.Math.ceil;
 2 import static java.lang.Math.sqrt;
 3 import static java.lang.Math.min;
 4 import static java.nio.file.StandardOpenOption.*;
 5 import java.nio.file.*;
 6 import java.nio.channels.*;
 7 import java.nio.*;
 8 import java.util.*;
 9 import java.io.IOException;
10 
11 public class PrimesToFile3 {
12   public static void main(String[] args) {
13     int primesRequired = 100;                                          // Default count
14     if (args.length > 0) {
15       try {
16         primesRequired = Integer.valueOf(args[0]).intValue();
17       } catch (NumberFormatException e) {
18         System.out.println("Prime count value invalid. Using default of " + primesRequired);
19       }
20     }
21 
22       long[] primes = new long[primesRequired];                        // Array to store primes
23       
24       getPrimes(primes);
25       Path file = createFilePath("Beginning Java Struff","primesAgain.txt");
26       writePrimesFile(primes,file);
27     }
28       //Calculate enough primes to fill the array
29       private static long[] getPrimes(long[] primes) {
30           primes[0] = 2L;                                                  // Seed the first prime
31           primes[1] = 3L;                                                  // and the second
32           // Count of primes found ?up to now, which is also the array index
33           int count = 2;
34           // Next integer to be tested
35           long number = 5L;
36 
37           outer:
38           for (; count < primes.length; number += 2) {
39 
40             // The maximum divisor we need to try is square root of number
41             long limit = (long)ceil(sqrt((double)number));
42 
43             // Divide by all the primes we have up to limit
44             for (int i = 1 ; i < count && primes[i] <= limit ; ++i)
45               if (number % primes[i] == 0L)                                // Is it an exact divisor?
46                 continue outer;                                            // yes, try the next number
47 
48             primes[count++] = number;                                      // We got one!
49           }
50           return primes;
51         }
52     //Create the path for the named file in the specified directory
53     //in the user home directory
54     private static Path createFilePath(String directory, String fileName) {
55         Path file = Paths.get(System.getProperty("user.home")).resolve(directory).resolve(fileName);
56         try {
57           Files.createDirectories(file.getParent());                       // Make sure we have the directory
58         } catch (IOException e) {
59           e.printStackTrace();
60           System.exit(1);
61         }
62         System.out.println("New file is: " + file);
63         return file;
64     }
65     
66     //Write the array contents to file
67     private static void writePrimesFile(long[] primes, Path file) {
68         final int BUFFERSIZE = 1024;                                        // Byte buffer size
69         try (WritableByteChannel channel = Files.newByteChannel( file, EnumSet.of(WRITE, CREATE))){
70           ByteBuffer buf = ByteBuffer.allocate(BUFFERSIZE);
71           String primeStr = null;
72           int primesWritten = 0;
73         while (primesWritten < primes.length) {
74             while (primesWritten < primes.length) {
75               primeStr = "prime = " + primes[primesWritten];
76               if ((buf.position() + 2*primeStr.length() + 16) > buf.limit()) {
77                 break;
78               }
79               buf.asDoubleBuffer().put(0, (double)primeStr.length());
80               buf.position(buf.position() + 8);
81               buf.position(buf.position() + 2*buf.asCharBuffer().put(primeStr).position());
82               buf.asLongBuffer().put(primes[primesWritten++]);
83               buf.position(buf.position() + 8);
84             }
85             buf.flip();
86             channel.write(buf);
87             buf.clear();
88           }
89          System.out.println("File written is " + ((FileChannel)channel).size() + " bytes.");
90         } catch (IOException e) {
91           e.printStackTrace();
92         }
93     }
94 }

 

转载于:https://www.cnblogs.com/mannixiang/p/3386796.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/261142.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

导出oracle sequences,利用数据泵只导出序列

Oracle的数据泵导入导出功能比原有的导入导出工具(exp/imp)功能强很多。利用数据泵我们可以只导出某一特定对象类型&#xff0c;并且可以指定过滤条件。这个功能的实现主要依靠expdp的include参数。联机文档对于参数的功能描述如下&#xff1a;INCLUDEDefault: nonePurposeEnab…

HDU2546_用01背包做

题目大意&#xff1a; 电子科大本部食堂的饭卡有一种很诡异的设计&#xff0c;即在购买之前判断余额。如果购买一个商品之前&#xff0c;卡上的剩余金额大于或等于5元&#xff0c;就一定可以购买成功&#xff08;即使购买后卡上余额为负&#xff09;&#xff0c;否则无…

俄罗斯游戏软件:C语言应用初步感受

俄罗斯游戏软件&#xff1a;C语言应用初步感受C语言课程设以一节课&#xff0c;老师提供了一个C语言的飞俄罗斯方块让我们感受&#xff0c;我们所学的C语言课程&#xff0c;主要是各种语句的练习&#xff0c;这次是用我们所学过的知识来感受一个实际的系统。首先安装c-free&…

重定向 12 21 解析

在 shell 程式中&#xff0c;最常使用的 FD (file descriptor) 大概有三个, 分别是: 0: Standard Input (STDIN) 1: Standard Output (STDOUT) 2: Standard Error Output (STDERR) 在标准情况下, 这些FD分别跟如下设备关联: stdin(0): keyboard 键盘输入,并返回在前端 stdout(…

oracle xml中cdata,XML CDATA的作用

XML CDATA的作用更新时间&#xff1a;2009年09月01日 00:52:36 作者&#xff1a;当你用FLASH和xml结合做网站应用程序时&#xff0c;例如你做在我研究游戏排行榜中&#xff0c;当让人自由输入姓名时&#xff0c;人们可以输入一些符号&#xff0c;例如∶""、"/…

SQL登录 18470 18452 错误

18452&#xff0c;是验证模式没有选择混合模式。 对应方法&#xff1a; 设置允许SQL Server身份登录(基本上这个很有用) 操作步骤&#xff1a; 1。在企业管理器中&#xff0c;展开"SQL Server组"&#xff0c;鼠标右键点击SQL Server服务器的名称 2。选择…

android开发(49) android 使用 CollapsingToolbarLayout ,可折叠的顶部导航栏

概述 在很app上都见过 可折叠的顶部导航栏效果。google support v7 提供了 CollapsingToolbarLayout 可以实现这个效果。效果图如下&#xff1a; 实现步骤 1. 写一个 CollapsingToolbarLayout&#xff0c;它有两个 子视图&#xff0c;一个就是上图显示的图片&#xff08;降落伞…

linux ssh服务端下载文件,Linux SSH服务端配置文件设置

一 SSH概述SSH 由 IETF 的网络小组(Network Working Group)所制定&#xff1b;SSH 为建立在应用层基础上的安全协议。SSH 是目前较可靠&#xff0c;专为远程登录会话和其他网络服务提供安全性的协议。利用 SSH 协议可以有效防止远程管理过程中的信息泄露问题。SSH最初是UNIX系统…

注意扩展方法的返回值类型

public static IEnumerable<TSource> Where &#xff1a; IEnumerable<TSource> 类型转载于:https://www.cnblogs.com/changbaishan/p/3391842.html

使用GPUImage实现视频滤镜

关于GPUImage 这里直接引用官方描述&#xff1a;The GPUImage framework is a BSD-licensed iOS library that lets you apply GPU-accelerated filters and other effects to images, live camera video, and movies. In comparison to Core Image (part of iOS 5.0), GPUImag…

C 学习笔记 - 数组

在学习了 C 语言的数组之后&#xff0c;我发现 C 中的数组与 C# 中的数组除了书写形式上略有区别&#xff0c;其它的基本上都一模一样。 因为之前有 C# 的底子&#xff0c;所有学习 C 语言&#xff0c;感觉也挺轻松的&#xff0c;不过 C 和 C# 之前还是有很多不一样的地方&…

yunos5 linux内核,魅蓝5S、魅蓝5对比看差异 选Android还是YunOS?

原标题&#xff1a;魅蓝5S、魅蓝5对比看差异 选Android还是YunOS&#xff1f;几天前魅族发布了魅蓝5S&#xff0c;这款手机刚好2月20日上午10点开始销售&#xff0c;在魅族官方店和天猫都可以买到。作为新一代入门级手机&#xff0c;魅蓝5S最大得卖点恐怕就是加入了18W快充功能…

.net SerialPort

虚拟串口并定时向虚拟串口定时发数据http://scorpiomiracle.iteye.com/blog/653923C#中如何使用SerialPort控件向单片机发送数据&#xff1f;http://zhidao.baidu.com/question/206863745.html?frqrl&index2&qbltopic_question_2_2 转载于:https://www.cnblogs.com/su…

微软ASP.NET站点部署指南(3):使用Web.Config文件的Transformations

1. 综述 大多数程序里都会在Web.config里设置参数&#xff0c;并且在部署的时候需要更改。每次都手工更改这些配置很乏味&#xff0c;也容易出错。该章节将会告诉你如果通过自动化更新Web.config文件来避免这些问题。 2. Web.config Transformations 与Web Deploy Parameters 有…

linux嵌入式c网络编程,嵌入式Linux网络编程之:网络高级编程

本文引用地址&#xff1a;http://www.eepw.com.cn/article/257115.htm在实际情况中&#xff0c;人们往往遇到多个客户端连接服务器端的情况。由于之前介绍的如connet()、recv()和send()等都是阻塞性函数&#xff0c;如果资源没有准备好&#xff0c;则调用该函数的进程将进入睡眠…

myeclipse不编译

错误&#xff1a; org.eclipse.core.internal.registry.configurationElementHandle cannot be cast to org.eclipse.jdt.core.compiler.CompilationParticipant&#xff09; 解决&#xff1a; 关掉MyEclipse>把MyEclipse安装目录下的configuration中的update目录删掉>重…

eclipse配置PHP自动提示代码

为什么80%的码农都做不了架构师&#xff1f;>>> 配置php自动提示代码 &#xff08;html/js和PHP方法一样&#xff09; 1. 打开 Eclipse的 Window -> Preferences -> PHPeclipse -> PHP -> Code Assist 打开里面的Enable auto activation选项,下面有个…

Oracle 执行计划 提示 'PLAN_TABLE' is old version 解决方法

用set autotrace 或者 explain plan for 生成执行计划时&#xff0c;有如下提示&#xff1a;Note----- - PLAN_TABLE is old version导致这个错误的原因是曾经使用toad的执行计划分析过&#xff0c;所以执行了它自带的脚本生成了plan_table。解决办法&#xff0c;drop掉plan_…

C#磁盘遍历——递归

static void Main(string[] args){//创建秒表&#xff0c;记录查询的总时间Stopwatch timer new Stopwatch();timer.Start();//传入本地磁盘路径&#xff0c;遍历当前路径下的所有文件LoadDirectory("G:\传智播客.Net培训—就业班精品");timer.Stop();Console.Write…

linux卸载minicoda2,MiniConda2下载 MiniConda python 2.7 v4.3.30.2 Linux 64位 官方免费版(附安装步骤) 下载-脚本之家...

MiniConda python 2.7 Linux版是一款可以在Linux系统下使用的Python 环境管理工具&#xff0c;同时MiniConda是一个开源的软件包管理系统和环境管理系统&#xff0c;用于安装多个版本的软件包及其依赖关系&#xff0c;并在它们之间轻松切换&#xff0c;本次为大家提供的是Linux…