Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I know that I can find the new line of system with

     System.getProperty("line.separator");  

does the line.separator will be always new line ?

How I can do the same for tab ?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
556 views
Welcome To Ask or Share your Answers For Others

1 Answer

I dont think there is an equivalent for tab, is a single character. while the system property line.separator is a (oracle docs)

Sequence used by operating system to separate lines in text files

which mean it can be more than one character depending on the operation system the application running on. It can be or or .

Many text editing application offer to replace a tab key press by a sequence of spaces instead of the single character , from which users may define the length. This is handled by the application itself.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...