Eclipse Mac 到 Windows 记事本格式化无回车
我在 mac 上使用 eclipse 来进行 java 编码。
现在我需要打开一个用 mac eclipse 创建的 .java 文件,并在 Windows 记事本中打开它。
然而,所有回车/换行格式都消失了。
有没有办法可以保留所有格式?
I am using eclipse on mac to do my java coding.
Now i need to open a .java file that was created with mac eclipse and open it in a Windows notepad.
However all the carriage return/ newline formatting is gone.
Is there a way where I can retain all the formatting?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Windows 记事本无法显示除 Windows 中使用的换行符之外的换行符(CR+LF,Unix 系统仅使用 LF)。如果您必须在记事本等内置编辑器中打开它,请尝试使用写字板。
Windows notepad is not able to display linebreaks other than the ones used in Windows (CR+LF, Unix-Systems use LF only). If you have to open it in a built-in Editor like Notepad, try WordPad.
如果您想更改行结尾首选项,请转至:
如果您想将行结尾转换为 Windows 格式,请阅读 这篇文章用于使用翻转来完成此操作。
否则我会建议您使用其他文本编辑器,例如 Notepad++ 或 Windows 上的 Sublime Text 2。
问候。
If you want to change line endings preferences go to:
If you want to convert line endings to windows format, read this post for doing it with flip.
Otherwise I will recommend you to use other text editor like Notepad++ or Sublime Text 2 on windows.
Regards.