我有一个令人费解的情况,我需要一个专家意见,以解释下面解释的现象的原因.几周前,我进行了一次名为“Java开发人员概述”的会议,作为其中的一部分,我编写了一个快速类C#(3.5框架)来从文件中读取并逐行写入另一个文件(在迭代中).由于我的观众是java开发人员,我在java类中使用相同的代码进行并排比较.但是,当我在同一台机器上运行这些类时,令我惊讶的是,java代码的运行速度始终是C#代码的两倍.我已尝试在C#代码中进行许多优化以缩小差距,但无法成功.必须有一个解释,我正在寻找可以解释原因的人.我附上了两个类的源代码供您参考.
Java类
public class ReadWriteTextFile {
static public String getContents(File aFile,String OutPutFileName) {
StringBuilder contents = new StringBuilder();
try {
BufferedReader input = new BufferedReader(new FileReader(aFile));
FileReader x = new FileReader(aFile);
try {
String line = null;
while (( line = input.readLine()) != null){
setContents(OutPutFileName,line + System.getProperty("line.separator"));
}
}
finally {
input.close();
}
}
catch (IOException ex){
ex.printStackTrace();
}
return contents.toString();
}
static public void setContents(String FileName,String aContents)
throws FileNotFoundException,IOException {
try {
FileWriter fstream = new FileWriter(FileName,true);
BufferedWriter out = new BufferedWriter(fstream);
out.write(aContents);
out.close();
} catch (Exception xe) {
xe.printStackTrace();
}
}
public static void main (String[] aArguments) throws IOException {
System.out.println(getDateTime() + ": Started");
File testFile = new File("C:\\temp\\blah.txt");
String testFile2 = "C:\\temp\\blahblah.txt";
for(int i=0; i<100; i++){
getContents(testFile,testFile2);
}
System.out.println(getDateTime() + ": Ended");
}
private synchronized static String getDateTime() {
DateFormat dateFormat = new SimpleDateFormat(
"yyyy/MM/dd HH:mm:ss");
Date date = new Date();
return dateFormat.format(date);
}
}
C#类
class ReadWriteTextFile
{
static void Main(string[] args)
{
System.Diagnostics.Trace.WriteLine(getDateTime() + ": Started");
String testFile = "C:\\temp\\blah.txt";
String testFile2 = "C:\\temp\\blahblah.txt";
for(int i=0; i<100; i++){
getContents(testFile,testFile2);
}
System.Diagnostics.Trace.WriteLine(getDateTime() + ": Ended");
}
static public void getContents(String sourceFile,String targetFile) {
try {
using (StreamReader r = File.OpenText(sourceFile))
{
String line;
while ((line = r.ReadLine()) != null)
{
setContents(targetFile,line);
}
r.Close();
}
}
catch (IOException ex){
Console.WriteLine(ex.StackTrace);
}
}
static public void setContents(String targetFile,String aContents)
{
try {
//FileStream fsO = new FileStream(targetFile,FileMode.Append);
//StreamWriter w = new StreamWriter(fsO);
FileStream fs = new FileStream(targetFile,FileMode.Append,FileAccess.Write,FileShare.None);
using (StreamWriter w = new StreamWriter(fs))
{
w.WriteLine(aContents + "\n");
}
} catch (Exception xe) {
Console.WriteLine(xe.StackTrace);
}
}
private static String getDateTime() {
DateTime dt = DateTime.Now;
return dt.ToString("yyyy/MM/dd HH:mm:ss");
}
}
最佳答案
原文链接:https://www.f2er.com/java/437765.html