本文介绍了smartGWT中线路分隔符的等价物?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有等价或替代的

  System.getProperty(line.separator); 

它给出了下面的错误



方法getProperty(String,String)在类型System中不适用于参数(String)。我认为你需要在您的服务器端代码中执行 System.getProperty(line.separator)并使用RPC或任何其他服务器端gwt通信技术访问它。



查看:


Is there an equivalent or alternate for

System.getProperty("line.separator");

It gives the below error

The method getProperty(String, String) in the type System is not applicable for the arguments (String)

解决方案

I think you need to execute System.getProperty("line.separator") in your server side code and access it using RPC or any other server side gwt communication technique.

Check GWT JRE Emulation:

这篇关于smartGWT中线路分隔符的等价物?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 01:45