Tux:\n
Win:\r\n
Cordial Saludo:
Estoy escribiendo en una base de Datos MySQL, lo capturado por la entrada de un formulario:
Código PHP:
out.println("<textarea name=ValueField type= textarea cols=100 rows=1>"+ValueField+"</textarea>");
Código PHP:
String ValueField = request.getParameter("ValueField");
String Inserting = "INSERT INTO MySQLTable VALUES(";
Inserting = Inserting+"'"+ValueField+"');";
MyStatement.executeUpdate(Inserting);
Código PHP:
Definitions = MyStatement.executeQuery("SELECT MySQLTableField FROM MySQLTable;");
Definitions.next();
String sValueField = new String (Definitions.getBytes("MySQLTableField"),"iso-8859-1");
MyFile = new File("LocationOfFile");
MyFileWriter = new FileWriter(MyFile);
MyBufferedWriter = new BufferedWriter(MyFileWriter);
MyBufferedWriter.write(sValueField);
En el Caso de que ValueField sea igual a:
"
Linea 1
Linea 2
Linea 3"
Necesito que el Archivo llamado "LocationOfFile" Contenga el texto tal cual como se digitó, si vemos son varias Líneas...
Los sistemas operativos son indiferentes, es decir, necesito que funcione para Windows, como para Linux
Gracias.