java输出换行的标准姿势"line.separator"

java中写.txt文件,实现换行的几种方法:
1.使用java中的转义符"\r\n": 
windows下的文本文件换行符:\r\n
linux/unix下的文本文件换行符:\r
Mac下的文本文件换行符:\n

1.String str="aaa";
2.str+="\r\n";  

2.BufferedWriter的newline()方法:

FileOutputStream fos=new FileOutputStream("c;\\11.txt");
BufferedWriter bw=new BufferedWriter(fos);
bw.write("你好");
bw.newline();
bw.write("java");
bw.newline();   
    /**
     * Creates a new buffered character-output stream that uses an output
     * buffer of the given size.
     *
     * @param  out  A Writer
     * @param  sz   Output-buffer size, a positive integer
     *
     * @exception  IllegalArgumentException  If sz is <= 0
     */
    public BufferedWriter(Writer out, int sz) {
    super(out);
    if (sz <= 0)
        throw new IllegalArgumentException("Buffer size <= 0");
    this.out = out;
    cb = new char[sz];
    nChars = sz;
    nextChar = 0;

    lineSeparator =    (String) java.security.AccessController.doPrivileged(
               new sun.security.action.GetPropertyAction("line.separator"));
    }

BufferedWriter中newline()方法:
  /**
     * Writes a line separator.  The line separator string is defined by the
     * system property <tt>line.separator</tt>, and is not necessarily a single
     * newline (‘\n‘) character.
     *
     * @exception  IOException  If an I/O error occurs
     */
    public void newLine() throws IOException {
    write(lineSeparator);
    }

3.使用System.getProperty()方法:

String str = "Output:"+System.getProperty("line.separator");  

http://www.cnblogs.com/todoit/archive/2012/04/27/2473232.html

PrintWriter在以下以pw代替,在写client与server进行测试的通讯程序时,用pw.println(str)可以把数据发送给客户端,而pw.write(str)却不行!
查看源码发现:
pw.println(str)方法是由write方法与println()方法组成,而println()方法中执行了newLine()方法。
    而 newLine()实现中有一条out.write(lineSeparator);
    即println(str)方法比write方法中多输出了一个lineSeparator字符;  
    其中lineSeparator实现为:
    lineSeparator = (String) java.security.AccessController.doPrivileged(new sun.security.action.GetPropertyAction("line.separator"));
   而line.separator属性跟据每个系统又是不一样的。
   println()方法的注释说明中提到:
  /**
   * Terminates the current line by writing the line separator string.  The
   * line separator string is defined by the system property
   * <code>line.separator</code>, and is not necessarily a single newline
   * character (<code>‘\n‘</code>).
   */
    在我机器上(windows)测试,默认的lineSeparator输出的十六进制为13 10即\r\n
    这样write方法修改为:write(str+"\r\n")即达到了与println(str)一样的效果了。

http://blog.csdn.net/vhomes/article/details/6650576

时间: 2024-10-24 03:11:34

java输出换行的标准姿势"line.separator"的相关文章

java在文件中输出换行符

在字符串后面添加\r\n就可以了. 或者使用newline方法: FileOutputStream fos=new FileOutputStream("c:\\11.txt"); BufferedWriter bw=new BufferedWriter(fos); bw.write("你好"); bw.newline(); bw.write("java"); bw.newline(); 或者: String str = "aaa&quo

IO流输出换行问题

File file=new File("address"); FileInputStream in=new FileInputStream("file"); InputStreamReader read=new InputStreamReader("in","utf-8"); BufferedReader buf=new BufferedReader(read); String str=""; String

JAVA学习笔记一(JAVA输出环境变量)

package mytest; import java.util.*;; public class mymain { public static void main(String[] args) { // TODO Auto-generated method stub System.out.print(new Date()); Properties p=System.getProperties(); p.list(System.out); Runtime rt=Runtime.getRuntim

System.getProperty("line.separator")注意事项

在实现multipart/form-data的图片上传时,需要用\r\n来分隔每一行,在JAVA中实现multipart/form-data的图片上传时则可以使用System.getProperty("line.separator")来进行每一行的分割.但是如果要将代码用于Android中,则切记不能使用System.getProperty("line.separator")来进行每一行的分割,因为在Android中System.getProperty("

关于java输出的一道题

今天在我的后宫群看到了一道有意思的java题,分享一下 题目是这样的看到第一眼,反应:重载输出println也能重载?据说正常反应应该是 在method中输出然后直接退出,果然是自己智商不够既然不确定,那就Stack Overflow一下,找了找果然发现了,System.setOut() 关于这个函数,详细内容可以看官方文档,在这大致概括一下 setOut(PrintStream out)将输出流的规则设置为out内的输出规则 而PrintStream中,则有着println方法,因此,我们只需

【python】禁止print输出换行的方法

print后用一个逗号结尾就可以禁止输出换行,例子如下 >>> i=0 >>> while i < 3: print i i+=1 0 1 2 禁止输出换行后效果如下: >>> i=0 >>> while i < 3: print i, i+=1 0 1 2 [python]禁止print输出换行的方法,布布扣,bubuko.com

Java,Hibernate,标准sql数据类型之间的对应表

(2010-07-14 19:53:50) 转载▼ 标签: 杂谈 分类: JAVA Hibernate API简介 其接口分为以下几类: l         提供访问数据库的操作的接口: l         用于配置Hibernate的接口: l         回调接口 l         扩展Hibernate的功能的接口. 这些接口大多数位于net.sf.hibernate包中 Hibernate的核心接口 5个核心接口: l         Configuration接口:配置Hiber

android Caused by: java.lang.IllegalArgumentException: Binary XML file line #7: Must specify unique

今天写了一个静态得fragment,好久没写了,一写就出现问题了,先看下布局文件 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height=&qu

错误: java.lang.RuntimeException: Binary XML file line #7: You must supply a layout_height attribute.

java.lang.RuntimeException: Binary XML file line #7: You must supply a layout_height attribute. 这个错误有可能是你指定了高度,但是在对应的dpi下没有声明这个dimen高度导致的错误. <RelativeLayout android:layout_width="match_parent" android:layout_height="@dimen/titlebar_heigh