- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
int readBytes = channel.read(buffer);
ByteBuffer buffer = ...;
buffer.put(...); // 存入数据
buffer.flip(); // 切换读模式
while(buffer.hasRemaining()) {
channel.write(buffer);
}
long pos = channel.position();
long newPos = ...;
channel.position(newPos);
创建一个from.txt文件,内容如下:
创建一个文件内容为空的to.txt文件,如下:
package com.example.nettytest.nio.day2;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.channels.FileChannel;
/**
* @description: 通过两个Channel传输数据示例
* @author: xz
* @create: 2022-07-26 21:45
*/
public class TestFileChannelTransferTo {
public static void main(String[] args) {
transferTo1();
}
//通过FileChannel传输数据(方式一)
public static void transferTo1(){
/**
* 新建2个FileChannel
* from 表示从from.txt读取内容
* to 表示向to.txt写入内容
* */
try (FileChannel from = new FileInputStream("file/from.txt").getChannel();
FileChannel to = new FileOutputStream("file/to.txt").getChannel();
)
{
/**
*第一个参数表示起始位置下标
*第二个参数表示读取文件内容的大小
*第三个参数表示向哪个文件里写
* transferTo 数据传输方法
* */
from.transferTo(0,from.size(),to);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
}
创建一个from.txt文件,内容如下:
创建一个文件内容为空的to.txt文件,如下:
package com.example.nettytest.nio.day2;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.channels.FileChannel;
/**
* @description: 通过两个Channel传输数据示例
* @author: xz
* @create: 2022-07-26 21:45
*/
public class TestFileChannelTransferTo {
public static void main(String[] args) {
transferTo2();
}
//通过FileChannel传输数据(方式二),传输数据 >2G
public static void transferTo2(){
/**
* 新建2个FileChannel
* from 表示从from.txt读取内容
* to 表示向to.txt写入内容
* */
try (FileChannel from = new FileInputStream("file/from.txt").getChannel();
FileChannel to = new FileOutputStream("file/to.txt").getChannel();
)
{
/**
* 此方式效率高,底层会利用操作系统的零拷贝进行优化 传输数据 >2G
* left 表示 变量代表还剩余多少字节
* left =from.size() 表示初始大小为from.txt文件内容的大小
* left >0 表示初始时大小 > 0
* */
for (long left =from.size(); left >0;){
/**from.size() - left 表示起始位置下标
* left 表示剩余多少字节下标
*/
System.out.println("position:" + (from.size() - left) + " left:" + left);
//transferTo 数据传输方法
left -= from.transferTo((from.size() - left), left, to);
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
}
我正在考虑更改 this question进入我的情况。然后我决定我的情况需要自己的问题并希望得到答案。在调用 FileChannel.truncate() 减小文件大小后,我调用 FileChann
我已阅读关于 FileChannel 的 transferFrom 的评论 * This method is potentially much more efficient than a simp
我必须按照小端顺序写一个整数。所以我创建了一个带有 FileChannel 属性和一些写入方法的类(此类不扩展任何内容)。 但是有一个问题:只有一种方法有效,另一种无效! 这里是工作方法(dis是Fi
以下是我将一个文件附加到另一个文件的方法。 public static void appendFile(File baseFile, File newFile) throws IOException
我正在创建一个 fileChannel 来执行内存映射写入。该文件 channel 的大小为 100 字节。我只向其中写入 80 个字节。因此,当我稍后读取该文件时,它会在 and 上添加 5 个“0
我有一个 IO 类,它使用 ByteBuffer 来缓冲对 FileChannel 的访问(因此它基本上在构造函数中接受 FileChannel)。我想对它进行单元测试,所以如果我能得到一个字节数组支
我是 Java NIO 新手。我发现 FileChannel 对象具有读取和写入方法。但我无法在单个时间点使用相同的 FileChannel 进行读写。有没有办法做到这一点? 最佳答案 从具有“rw”
使用 FileChannel.position() 从不同线程写入一个文件是否安全?这对于分段下载是必需的。每个线程都会写入其在文件中的位置,即线程的位置不会相交。 最佳答案 虽然单个选项是线程安全的
在读取大文件时,我从这段代码中得到了一些奇怪的输出,该文件是使用 while 循环打印到 99,999 位数的,但是,在读取文件并打印内容时,它只输出 99,988 行。另外,使用 ByteBuffe
我正在使用fileChannel.lock(long position, long size, boolean shared)获得文件特定部分的独占访问权限。具体代码为: fileChannel.lo
我尝试使用 FileChannel 将特定字节写入文件的特定位置。但实际上文件缩小到我写更改的最后位置。我这样做: Path path = Paths.get("I://music - Cop
我正在使用 FileChannel 将 2MB 数据写入文件。 private void write(int numEntries, int entrySize) throws Exc
我有一个管道,我需要从中读取数据。但是,正如我在阅读之前所了解的那样,我必须创建一定大小的缓冲区。问题是如何定义缓冲区的大小以从管道读取所有数据? 这是我的代码: RandomAccessFile a
我正在尝试使用以下方法连接一组文本文件。但是,只有第一个文件显示在输出文件中。 public void concatenateFiles(List fileLocations, String outp
当我执行以下类(class)时 import java.io.*; import java.nio.*; import java.nio.file.*; import java.nio.channel
我目前正在开发一个应用程序,需要随机访问许多(60k-100k)相对较大的文件。由于打开和关闭流是一项相当昂贵的操作,因此我更愿意将最大文件的 FileChannel 保持打开状态,直到不再需要它们为
我正在使用 RandomAccessFile 打开大文件(~ 200 MB),然后获取它的 Channel。我正在尝试将一些数据映射到 MappedByteBuffer,但出现异常: Channel
文件 a.txt 看起来像: ABC 文件 d.txt 看起来像: DEF 我正在尝试获取“DEF”并将其附加到“ABC”,因此 a.txt 看起来像 ABC DEF 我尝试过的方法总是完全覆盖第一个
对于我的特定任务,我需要从 FileChannel 中读取数据到 Stream (或 Collection )属于 String的。 在常规 NIO对于 Path我们可以使用一个方便的方法Files.
我想我误解了 FileChannel 的锁定功能是如何工作的。 我想在一个文件上拥有独占写入锁,但允许从任何进程读取。 在运行 Java 7 的 Windows 7 机器上,我可以使用 FileCha
我是一名优秀的程序员,十分优秀!