ag2s20150909
2025-01-17 23:21:20 +08:00
committed by GitHub
parent 17b2489bc1
commit 34c996889b
2 changed files with 22 additions and 45 deletions
@@ -55,10 +55,13 @@ public class StreamReader {
} }
public byte[] readBytes(int len) throws IOException { public byte[] readBytes(int len) throws IOException {
if (len < 1) { if (len < 0) {
System.out.println(len); System.out.println(len);
throw new IllegalArgumentException("Length must > 0: " + len); throw new IllegalArgumentException("Length must > 0: " + len);
} }
if (len==0){
return null;
}
byte[] b = new byte[len]; byte[] b = new byte[len];
is.read(b); is.read(b);
incCount(len); incCount(len);
@@ -3,14 +3,14 @@ package me.ag2s.umdlib.tool;
import java.io.BufferedInputStream; import java.io.BufferedInputStream;
import java.io.BufferedOutputStream; import java.io.BufferedOutputStream;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream; import java.io.ByteArrayOutputStream;
import java.io.File; import java.io.File;
import java.io.FileInputStream; import java.io.FileInputStream;
import java.io.FileOutputStream; import java.io.FileOutputStream;
import java.io.IOException; import java.io.IOException;
import java.util.Random; import java.util.Random;
import java.util.zip.InflaterInputStream; import java.util.zip.Inflater;
import java.nio.charset.StandardCharsets;
public class UmdUtils { public class UmdUtils {
@@ -30,23 +30,7 @@ public class UmdUtils {
throw new NullPointerException(); throw new NullPointerException();
} }
int len = s.length(); return s.getBytes(StandardCharsets.UTF_16LE);
byte[] ret = new byte[len * 2];
int a, b, c;
for (int i = 0; i < len; i++) {
c = s.charAt(i);
a = c >> 8;
b = c & 0xFF;
if (a < 0) {
a += 0xFF;
}
if (b < 0) {
b += 0xFF;
}
ret[i * 2] = (byte) b;
ret[i * 2 + 1] = (byte) a;
}
return ret;
} }
/** /**
@@ -56,21 +40,11 @@ public class UmdUtils {
* @return 原始字符串 * @return 原始字符串
*/ */
public static String unicodeBytesToString(byte[] bytes) { public static String unicodeBytesToString(byte[] bytes) {
char[] s = new char[bytes.length / 2]; //修复一些文件属性空值的问题
StringBuilder sb = new StringBuilder(); if (bytes==null){
int a, b, c; return "";
for (int i = 0; i < s.length; i++) {
a = bytes[i * 2 + 1];
b = bytes[i * 2];
c = (a & 0xff) << 8 | (b & 0xff);
if (c < 0) {
c += 0xffff;
}
char[] c1 = Character.toChars(c);
sb.append(c1);
} }
return sb.toString(); return new String(bytes, StandardCharsets.UTF_16LE);
} }
/** /**
@@ -101,19 +75,19 @@ public class UmdUtils {
* @throws Exception 解码时失败时 * @throws Exception 解码时失败时
*/ */
public static byte[] decompress(byte[] compress) throws Exception { public static byte[] decompress(byte[] compress) throws Exception {
ByteArrayInputStream bais = new ByteArrayInputStream(compress); Inflater inflater = new Inflater();
InflaterInputStream iis = new InflaterInputStream(bais); inflater.reset();
ByteArrayOutputStream baos = new ByteArrayOutputStream(); inflater.setInput(compress);
int c = 0;
byte[] buf = new byte[BUFFER_SIZE];
while (true) {
c = iis.read(buf);
if (c == EOF) ByteArrayOutputStream baos = new ByteArrayOutputStream(compress.length);
break; try (baos) {
baos.write(buf, 0, c); byte[] buff = new byte[BUFFER_SIZE];
while (!inflater.finished()) {
int count = inflater.inflate(buff);
baos.write(buff, 0, count);
}
} }
baos.flush(); inflater.end();
return baos.toByteArray(); return baos.toByteArray();
} }