This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/ddms/libs/ddmlib/src/com/android/ddmlib/MultiLineReceiver.java b/ddms/libs/ddmlib/src/com/android/ddml | |
index 24dbb05..f3d9412 100644 | |
--- a/ddms/libs/ddmlib/src/com/android/ddmlib/MultiLineReceiver.java | |
+++ b/ddms/libs/ddmlib/src/com/android/ddmlib/MultiLineReceiver.java | |
@@ -51,7 +51,7 @@ public abstract class MultiLineReceiver implements IShellOutputReceiver { | |
if (isCancelled() == false) { | |
String s = null; | |
try { | |
- s = new String(data, offset, length, "ISO-8859-1"); //$NON-NLS-1$ | |
+ s = new String(data, offset, length, "UTF-8"); //$NON-NLS-1$ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class JExcelSample { | |
public void sample(File inputFile) { | |
final Workbook masterBook = Workbook.getWorkbook(inputFile); | |
try { | |
for (Sheet sheet : masterBook.getSheets()) { | |
if (sheet == null) { | |
assert false : "null は無いはず。"; | |
continue; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<settings> | |
<profiles> | |
<profile> | |
<id>sign</id> | |
<properties> | |
<keystore>./test.keystore</keystore> | |
<storepass>hogehoge</storepass> | |
<keypass>hogehoge</keypass> | |
<alias>test</alias> | |
</properties> |
NewerOlder