@@ -1020,7 +1020,7 @@ public void testReadLines_CharSequence() throws IOException {
1020
1020
final File file = TestUtils .newFile (temporaryFolder , "lines.txt" );
1021
1021
CharSequence csq = null ;
1022
1022
try {
1023
- final String [] data = {"hello" , "/ u1234" , "" , "this is" , "some text" };
1023
+ final String [] data = {"hello" , "\ u1234 " , "" , "this is" , "some text" };
1024
1024
TestUtils .createLineFileUtf8 (file , data );
1025
1025
csq = new String (Files .readAllBytes (file .toPath ()), StandardCharsets .UTF_8 );
1026
1026
final List <String > lines = IOUtils .readLines (csq );
@@ -1035,7 +1035,7 @@ public void testReadLines_CharSequenceAsStringBuilder() throws IOException {
1035
1035
final File file = TestUtils .newFile (temporaryFolder , "lines.txt" );
1036
1036
StringBuilder csq = null ;
1037
1037
try {
1038
- final String [] data = {"hello" , "/ u1234" , "" , "this is" , "some text" };
1038
+ final String [] data = {"hello" , "\ u1234 " , "" , "this is" , "some text" };
1039
1039
TestUtils .createLineFileUtf8 (file , data );
1040
1040
csq = new StringBuilder (new String (Files .readAllBytes (file .toPath ()), StandardCharsets .UTF_8 ));
1041
1041
final List <String > lines = IOUtils .readLines (csq );
@@ -1068,9 +1068,8 @@ public void testReadLines_InputStream_String() throws Exception {
1068
1068
final File file = TestUtils .newFile (temporaryFolder , "lines.txt" );
1069
1069
InputStream in = null ;
1070
1070
try {
1071
- final String [] data = {" hello" , "/ u1234" , "" , "this is" , "some text" };
1071
+ final String [] data = { " \u4f60 \u597d " , " hello" , "\ u1234 " , "" , "this is" , "some text" };
1072
1072
TestUtils .createLineFileUtf8 (file , data );
1073
-
1074
1073
in = Files .newInputStream (file .toPath ());
1075
1074
final List <String > lines = IOUtils .readLines (in , UTF_8 );
1076
1075
assertEquals (Arrays .asList (data ), lines );
@@ -1086,7 +1085,7 @@ public void testReadLines_Reader() throws Exception {
1086
1085
final File file = TestUtils .newFile (temporaryFolder , "lines.txt" );
1087
1086
Reader in = null ;
1088
1087
try {
1089
- final String [] data = {"hello" , "/ u1234" , "" , "this is" , "some text" };
1088
+ final String [] data = {"hello" , "\ u1234 " , "" , "this is" , "some text" };
1090
1089
TestUtils .createLineFileUtf8 (file , data );
1091
1090
in = new InputStreamReader (Files .newInputStream (file .toPath ()));
1092
1091
final List <String > lines = IOUtils .readLines (in );
0 commit comments