Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将 Eclipse 应用程序转换为 net beans 7.2 版本,显示一些错误,例如用于编码 UTF-8 的不可映射字符
请帮我解决这个问题
请检查项目属性。在有的Sources类别中Encoding,将其设置为UTF-8。
Sources
Encoding
UTF-8
在 bash 中,标准 (1) 和错误 (2) 输出可以通过以下方式重新路由和丢弃:
>/dev/null 2>&1
但是下面的例子做了一些不同的事情:
nohup myscript.sh >myscript.log 2>&1 </dev/null &
<