mirror of
https://github.com/revanced/jadb.git
synced 2025-02-11 01:26:47 +01:00
Use StandardCharsets.UTF_8 instead of Charset.forName("utf-8); add charset where needed
Application should always work with utf-8 strings regardless of locale.
This commit is contained in:
parent
b255b3b618
commit
71689e4757
@ -1,7 +1,7 @@
|
|||||||
package se.vidstige.jadb;
|
package se.vidstige.jadb;
|
||||||
|
|
||||||
import java.io.*;
|
import java.io.*;
|
||||||
import java.nio.charset.Charset;
|
import java.nio.charset.StandardCharsets;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created by vidstige on 2014-03-19.
|
* Created by vidstige on 2014-03-19.
|
||||||
@ -52,7 +52,7 @@ public class SyncTransport {
|
|||||||
public String readString(int length) throws IOException {
|
public String readString(int length) throws IOException {
|
||||||
byte[] buffer = new byte[length];
|
byte[] buffer = new byte[length];
|
||||||
input.readFully(buffer);
|
input.readFully(buffer);
|
||||||
return new String(buffer, Charset.forName("utf-8"));
|
return new String(buffer, StandardCharsets.UTF_8);
|
||||||
}
|
}
|
||||||
|
|
||||||
public RemoteFileRecord readDirectoryEntry() throws IOException {
|
public RemoteFileRecord readDirectoryEntry() throws IOException {
|
||||||
|
@ -2,7 +2,7 @@ package se.vidstige.jadb;
|
|||||||
|
|
||||||
import java.io.*;
|
import java.io.*;
|
||||||
import java.net.Socket;
|
import java.net.Socket;
|
||||||
import java.nio.charset.Charset;
|
import java.nio.charset.StandardCharsets;
|
||||||
|
|
||||||
class Transport {
|
class Transport {
|
||||||
|
|
||||||
@ -44,7 +44,7 @@ class Transport {
|
|||||||
DataInput reader = new DataInputStream(inputStream);
|
DataInput reader = new DataInputStream(inputStream);
|
||||||
byte[] responseBuffer = new byte[length];
|
byte[] responseBuffer = new byte[length];
|
||||||
reader.readFully(responseBuffer);
|
reader.readFully(responseBuffer);
|
||||||
return new String(responseBuffer, Charset.forName("utf-8"));
|
return new String(responseBuffer, StandardCharsets.UTF_8);
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getCommandLength(String command) {
|
public String getCommandLength(String command) {
|
||||||
@ -52,7 +52,7 @@ class Transport {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void send(String command) throws IOException {
|
public void send(String command) throws IOException {
|
||||||
OutputStreamWriter writer = new OutputStreamWriter(outputStream);
|
OutputStreamWriter writer = new OutputStreamWriter(outputStream, StandardCharsets.UTF_8);
|
||||||
writer.write(getCommandLength(command));
|
writer.write(getCommandLength(command));
|
||||||
writer.write(command);
|
writer.write(command);
|
||||||
writer.flush();
|
writer.flush();
|
||||||
|
@ -6,6 +6,7 @@ import se.vidstige.jadb.JadbException;
|
|||||||
import java.io.BufferedReader;
|
import java.io.BufferedReader;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStreamReader;
|
import java.io.InputStreamReader;
|
||||||
|
import java.nio.charset.StandardCharsets;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.regex.Matcher;
|
import java.util.regex.Matcher;
|
||||||
@ -24,7 +25,7 @@ public class PropertyManager {
|
|||||||
|
|
||||||
public Map<String, String> getprop() throws IOException, JadbException {
|
public Map<String, String> getprop() throws IOException, JadbException {
|
||||||
try (BufferedReader bufferedReader =
|
try (BufferedReader bufferedReader =
|
||||||
new BufferedReader(new InputStreamReader(device.executeShell("getprop")))) {
|
new BufferedReader(new InputStreamReader(device.executeShell("getprop"), StandardCharsets.UTF_8))) {
|
||||||
return parseProp(bufferedReader);
|
return parseProp(bufferedReader);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -11,7 +11,7 @@ import java.io.DataInput;
|
|||||||
import java.io.DataOutputStream;
|
import java.io.DataOutputStream;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.net.ProtocolException;
|
import java.net.ProtocolException;
|
||||||
import java.nio.charset.Charset;
|
import java.nio.charset.StandardCharsets;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
@ -179,7 +179,7 @@ public class FakeAdbServer implements AdbResponder {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void withContent(String content) {
|
public void withContent(String content) {
|
||||||
this.content = content.getBytes(Charset.forName("utf-8"));
|
this.content = content.getBytes(StandardCharsets.UTF_8);
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean matches(RemoteFile path) {
|
public boolean matches(RemoteFile path) {
|
||||||
@ -212,7 +212,7 @@ public class FakeAdbServer implements AdbResponder {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void returns(String stdout) {
|
public void returns(String stdout) {
|
||||||
this.stdout = stdout.getBytes(Charset.forName("utf-8"));
|
this.stdout = stdout.getBytes(StandardCharsets.UTF_8);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void writeOutputTo(DataOutputStream stdout) throws IOException {
|
public void writeOutputTo(DataOutputStream stdout) throws IOException {
|
||||||
|
@ -12,7 +12,7 @@ import se.vidstige.jadb.test.fakes.FakeAdbServer;
|
|||||||
|
|
||||||
import java.io.ByteArrayInputStream;
|
import java.io.ByteArrayInputStream;
|
||||||
import java.io.ByteArrayOutputStream;
|
import java.io.ByteArrayOutputStream;
|
||||||
import java.nio.charset.Charset;
|
import java.nio.charset.StandardCharsets;
|
||||||
import java.text.DateFormat;
|
import java.text.DateFormat;
|
||||||
import java.text.ParseException;
|
import java.text.ParseException;
|
||||||
import java.text.SimpleDateFormat;
|
import java.text.SimpleDateFormat;
|
||||||
@ -72,7 +72,7 @@ public class MockedTestCases {
|
|||||||
server.add("serial-123");
|
server.add("serial-123");
|
||||||
server.expectPush("serial-123", new RemoteFile("/remote/path/abc.txt")).withContent("abc");
|
server.expectPush("serial-123", new RemoteFile("/remote/path/abc.txt")).withContent("abc");
|
||||||
JadbDevice device = connection.getDevices().get(0);
|
JadbDevice device = connection.getDevices().get(0);
|
||||||
ByteArrayInputStream fileContents = new ByteArrayInputStream("abc".getBytes());
|
ByteArrayInputStream fileContents = new ByteArrayInputStream("abc".getBytes(StandardCharsets.UTF_8));
|
||||||
device.push(fileContents, parseDate("1981-08-25 13:37"), 0666, new RemoteFile("/remote/path/abc.txt"));
|
device.push(fileContents, parseDate("1981-08-25 13:37"), 0666, new RemoteFile("/remote/path/abc.txt"));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -81,7 +81,7 @@ public class MockedTestCases {
|
|||||||
server.add("serial-123");
|
server.add("serial-123");
|
||||||
server.expectPush("serial-123", new RemoteFile("/remote/path/abc.txt")).failWith("No such directory");
|
server.expectPush("serial-123", new RemoteFile("/remote/path/abc.txt")).failWith("No such directory");
|
||||||
JadbDevice device = connection.getDevices().get(0);
|
JadbDevice device = connection.getDevices().get(0);
|
||||||
ByteArrayInputStream fileContents = new ByteArrayInputStream("abc".getBytes());
|
ByteArrayInputStream fileContents = new ByteArrayInputStream("abc".getBytes(StandardCharsets.UTF_8));
|
||||||
device.push(fileContents, parseDate("1981-08-25 13:37"), 0666, new RemoteFile("/remote/path/abc.txt"));
|
device.push(fileContents, parseDate("1981-08-25 13:37"), 0666, new RemoteFile("/remote/path/abc.txt"));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -92,7 +92,7 @@ public class MockedTestCases {
|
|||||||
JadbDevice device = connection.getDevices().get(0);
|
JadbDevice device = connection.getDevices().get(0);
|
||||||
ByteArrayOutputStream buffer = new ByteArrayOutputStream();
|
ByteArrayOutputStream buffer = new ByteArrayOutputStream();
|
||||||
device.pull(new RemoteFile("/remote/path/abc.txt"), buffer);
|
device.pull(new RemoteFile("/remote/path/abc.txt"), buffer);
|
||||||
Assert.assertArrayEquals("foobar".getBytes(Charset.forName("utf-8")), buffer.toByteArray());
|
Assert.assertArrayEquals("foobar".getBytes(StandardCharsets.UTF_8), buffer.toByteArray());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
Loading…
x
Reference in New Issue
Block a user