#101518# Replace back slashes with slashes and append a slash.

This commit is contained in:
Bertram Nolte 2002-08-08 15:18:44 +00:00
parent ea543c9a99
commit e293204328

View file

@ -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.
*/