English 中文(简体)
读书的信号特性?
原标题:Signal character for file reading?
  • 时间:2012-01-15 22:08:59
  •  标签:
  • file-io

我为我的朋友撰写了一份简便的 Java。 我是否可以使用从钥匙板上实际上永远不会使用的性质,或者在把笔记作为信号时几乎永远不会使用这种特性? 我需要记录一个名字,然后用该名称作说明。 但是,该说明可能有新路线,因此我不能在这里使用新路线。

最佳回答

如果你想利用新路线作为限制者,你可以躲避该说明中的任何新路线。 然而,更明智的是,只使用一个明确界定的轻重档案格式,这种格式已经存在,例如CSV

如果你真的想把自己的格式汇集起来,那么,传统选择是>NUL, a.k.a. >>>>>>>>> >>>>>>>>/code>或u0000

问题回答

暂无回答




相关问题
Is There Any Way Without File.ReadAllText?

As I love to develop file I/O applications and my new development platform is Windows Mobile. Is there any way to read all the file, without using File.ReadAllText? Because Windows Mobile doesn t ...

File paths in Java (Linux)

I have created a Java application that loads some configurations from a file conf.properties which is placed in src/ folder. When I run this application on Windows, it works perfectly. However when I ...

How do I create a string using a loop variable in MATLAB?

I have a loop like this: for i=1:no %some calculations fid = fopen( c:\out.txt , wt ); %write something to the file fclose(fid); end I want data to be written to different files like ...