Revision: 5855
          http://sourceforge.net/p/jump-pilot/code/5855
Author:   ma15569
Date:     2018-06-07 10:50:16 +0000 (Thu, 07 Jun 2018)
Log Message:
-----------
Changed text separation from comma to tab to avoid problems with 
American/British number annotation

Modified Paths:
--------------
    core/trunk/src/org/openjump/core/apitools/IOTools.java

Modified: core/trunk/src/org/openjump/core/apitools/IOTools.java
===================================================================
--- core/trunk/src/org/openjump/core/apitools/IOTools.java      2018-06-06 
12:20:32 UTC (rev 5854)
+++ core/trunk/src/org/openjump/core/apitools/IOTools.java      2018-06-07 
10:50:16 UTC (rev 5855)
@@ -307,13 +307,13 @@
                             file.getAbsoluteFile()), "UTF-8"));
 
             for (int j = 0; j < table.getColumnCount(); j++) {
-                bw.write(table.getModel().getColumnName(j) + ",");
+                bw.write(table.getModel().getColumnName(j) + "\t");
             }
             bw.newLine();
             ;
             for (int i = 0; i < table.getRowCount(); i++) {
                 for (int j = 0; j < table.getColumnCount(); j++) {
-                    bw.write(table.getModel().getValueAt(i, j) + ",");
+                    bw.write(table.getModel().getValueAt(i, j) + "\t");
                 }
                 bw.newLine();
             }


------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel

Reply via email to