#101518# Replace back slashes with slashes and append a slash.
This commit is contained in:
parent
ea543c9a99
commit
e293204328
1 changed files with 2 additions and 1 deletions
|
@ -37,7 +37,8 @@ import com.sun.star.lang.XMultiComponentFactory;
|
|||
public class ConverterServlet extends HttpServlet {
|
||||
/** Specifies the temporary directory on the web server.
|
||||
*/
|
||||
private String stringWorkingDirectory = System.getProperty( "java.io.tmpdir" );
|
||||
private String stringWorkingDirectory =
|
||||
System.getProperty( "java.io.tmpdir" ).replace( '\\', '/' ) + "/";
|
||||
|
||||
/** Specifies the host for the office server.
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue