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)
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)
Copyright © 2021 Jogjafile Inc.
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: