- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
好吧,所以我应该做一个作业:
假设您的聊天日志按如下方式排序:
System-0/Server-#channel.log
System-0/Server-#channel1.log
System-0/Server-#channel2.log
System-1/Server-#channel.log
System-1/Server-#channel2.log
System-2/Server-#channel3.log
System-0 是我的第一个系统,system 1 和 2 是其他计算机。我将如何继续将 System-0/#channel 与 System-1/#channel 日志文件合并?我已经弄清楚如何获取它们,但是,BufferedWriter 随机停止写入(它忘记了文本)并且它只适用于 1 个文件(所以说不同目录中有 2 个重复的日志文件,它只会处理第一个重复的日志文件在不同的目录中)。
抱歉我的英语不好,我不是母语人士,但我希望你明白我的意思。这是我到目前为止所得到的:我也愿意接受任何改进。
import java.io.*;
import java.nio.MappedByteBuffer;
import java.nio.channels.FileChannel;
import java.nio.charset.Charset;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import java.util.logging.Logger;
public class MergeV2 {
private static final Logger log = Logger.getLogger(MergeV2.class.getName());
private static final File ROOT_FOLDER = new File(System.getProperty("user.home") + (System.getProperty("os.name").contains("Windows") ? "/AppData/Roaming/X-Chat 2/xchatlogs" : "/.xchat2/xchatlogs"));
private static final HashMap<String, File[]> files = new HashMap<String, File[]>();
private static final HashMap<File, File[]> filesToWrite = new HashMap<File, File[]>();
public static void main(String... args) {
if (ROOT_FOLDER.exists()) {
for (final File f : ROOT_FOLDER.listFiles()) {
if (f.isDirectory() && f.getName().contains("System")) { //mandatory check
for (final File sub : f.listFiles()) {
String channelName = sub.getName().split("#")[1].replaceAll(".log", "");
if (files.containsKey(channelName)) {
ArrayList<File> tempFiles = new ArrayList<File>();
for (File t : files.get(channelName)) {
tempFiles.add(t);
}
tempFiles.add(sub);
File[] array = new File[tempFiles.size()];
array = tempFiles.toArray(array);
files.put(channelName, array);
} else {
files.put(channelName, new File[]{sub});
}
}
}
}
} else {
log.info("No log folder detected.");
}
String channel;
File f, ftemp;
for (Map.Entry<String, File[]> es : files.entrySet()) {
channel = "#" + es.getKey();
f = new File(ROOT_FOLDER.getAbsolutePath() + "/merged-" + channel + ".log");
ftemp = new File(f.getAbsolutePath() + ".temp");
if (f.exists()) {
f.delete();
ftemp.delete();
}
try {
f.createNewFile();
ftemp.createNewFile();
} catch (IOException ioe) {
ioe.printStackTrace();
}
filesToWrite.put(f, es.getValue());
}
try {
FileWriter fw = null;
BufferedWriter bw = null;
BufferedReader in = null;
for (Map.Entry<File, File[]> es : filesToWrite.entrySet()) {
File temp = new File(es.getKey() + ".temp");
bw = new BufferedWriter(new FileWriter(temp));
for (File t : es.getValue()) {
bw.write(readFile(t.getAbsolutePath()));
}
in = new BufferedReader(new FileReader(new File(es.getKey() + ".temp")));
StringBuilder sb = new StringBuilder();
String line;
while ((line = in.readLine()) != null) {
if (!line.contains("**** LOGGEN") && !line.contains("**** LOGGING")) {
sb.append(line);
}
}
bw = new BufferedWriter(new FileWriter(es.getKey()));
in.close();
new File(es.getKey() + ".temp").delete();
bw.write(sb.toString());
}
} catch (IOException e) {
}
}
private static String readFile(String path) throws IOException {
System.out.println("reading " + path);
FileInputStream stream = new FileInputStream(new File(path));
try {
FileChannel chan = stream.getChannel();
MappedByteBuffer mbb = chan.map(FileChannel.MapMode.READ_ONLY, 0, chan.size());
return Charset.defaultCharset().decode(mbb).toString();
} finally {
stream.close();
}
}
}
非常感谢!
最佳答案
您必须关闭缓冲写入器:
之后..
bw = new BufferedWriter(new FileWriter(es.getKey()));
in.close();
new File(es.getKey() + ".temp").delete();
bw.write(sb.toString());
添加
bw.close();
如果缓冲写入器未关闭,则更改将不会被保存,这解释了您提到的“(它忘记了文本)”。
关于java - 一项编程作业,如果多个文件与名称匹配,则将它们合并为一个。文件写入器/缓冲写入器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11746392/
我正在使用 MediaPlayer 在我的应用程序中播放在线 mp3 文件中的一些声音。 但是,即使在播放完成后,我也会在控制台中收到一行又一行的回调和缓冲。 10-24 08:08:48.467
我有一个简单的多边形。 dfr p = st_polygon(list(as.matrix(dfr))) > pbuf = st_buffer(p, .4) > plot(pbuf) > plot(
这可能又是一些愚蠢的问题,也许这确实是我所缺少的东西,但我很难让 glMultiDrawArrays 在 OpenGL4 中工作。 我发现了很多这样的解释: for (int i = 0; i #i
这仅仅是根据网络速度调整预缓冲内容量的问题吗?你是否在一开始就为此调整一次,每秒......? 或者它更复杂 - 对您的网络速度记录历史进行采样并取平均值/中值并对其进行调整? 最佳答案 您的第二段总
嗨,我正在使用 FFmpeg Autogen C#。当我使用 mkv 输出作为文件并使用 h264 rtsp 流作为输入时,一切正常。编解码器是 libx264 ffmpeg.avio_open(
我需要多次遍历几个文本文件的行。目前这是通过多个 with open("file.txt") as f: for line in f: # do something 虽然性能还
昨天给同学们写了一个xinetd小练习:做一个反向回显程序。 为了学习新东西,我尝试实现一个 Haskell 解决方案。琐碎的main = forever $ interact reverse不起作用
我正在阅读《实时渲染第三版》中的遮挡剔除部分,但我无法理解它是如何工作的。一些问题: “Z 金字塔”有何贡献?为什么我们需要多种分辨率的 Z 缓冲区?在书中,它的显示如下(左侧): 八叉树结构与用于一
我通过串行端口与设备通信。 我已成功获取 InputStream 并读取设备发送的内容。 但问题是,我根本不知道何时停止阅读并继续执行另一项任务。 这是简化的代码: inputStream = ser
我有以下代码: func (q *Queue) GetStreams(qi *QueueInfo) { channel := make(chan error, len(qi.AudioChun
在我调用 -play 之前,有没有办法让 MPMusicPlayerController 缓冲内容?还是在您设置队列时默认执行此操作? AVAudioPlayer 有 -prepareToPlay 方
我正在编写一个数据库 备份函数,从System.Diagnostics.Process 对象 读取StandardOutput (StreamReader) 属性。我已成功写入普通文件。 //This
我有一个 wpf 应用程序,其中所有 viewModel 都继承自实现 INotifyPropertyChanged 的类 NotifyPropertyChangeClass(见下文)。 我想限制
我需要类似于 withLatestFrom 的东西,对应于下图: ---------A-----------------B-- -1-2-3------4------5-6-7-8---- -----
有没有办法缓冲 OutputStream,在返回之前修改它?这是我的代码片段: public ServletOutputStream getOutputStream() throws IOExcept
目前我们有实现服务器通信协议(protocol)缓冲的需求。如果有人对此有任何意见,他们可以向我提供任何意见吗。 最佳答案 请查看以下 Protocol Buffer 链接。 http://code.
所以我目前正在开发一个 Java 应用程序,该应用程序应该将特定事件记录到数据库中。我希望每分钟最多有 15 到 20 次插入,基本上我想知道我是否应该为每个插入语句建立一个新连接,或者只要应用程序正
请考虑以下代码,包括两个线程 buffering_thread(用一条消息填充缓冲区指针)和 sending_thread(清空缓冲区): #include "msg.cpp" msg * buffe
是否可以在线播放由两个或多个视频文件组成的视频? 由于我原来的帖子不够清楚,这里有扩展的解释和问题。 我的站点托管在 Linux/Apache/PHP 服务器上。我有 FLV/F4V 格式的视频文件。
这是我用于缓冲和转换传入事件的代码: public Publisher> logs(String eventId) { ConnectableObservable connectableObs
我是一名优秀的程序员,十分优秀!