只需徘徊,是否有可能使用PowerShell将在JAVA中压缩的单词解压缩?
我在JAVA中解压缩了一个单词,然后将其以varbinary的形式存储到数据库中(下面对代码进行细化)。我希望稍后的人在PoswerShell中对其进行解压缩并为此记录创建一个文本文件。只是徘徊是否有可能,还有任何例子吗?
public static byte[] ZIP(String source) {
ByteArrayOutputStream bos= new ByteArrayOutputStream(source.length()* 4);
try {
GZIPOutputStream outZip= new GZIPOutputStream(bos);
outZip.write(source.getBytes());
outZip.flush();
outZip.close();
} catch (Exception Ex) {
}
return bos.toByteArray();
}