Collections - Movie 的獲得條件與支給分數
透過錯誤經驗,分享科技與遊戲當中的技術,提醒自己及瀏覽此網誌的人,避免踏進相同的陷阱。
本網誌只提供技術概要及合法軟件連結(如有)。
如閣下因下載、安裝、設定資料等操作,導致任何損失,請自行承擔風險及處理,在下不會負責。
2010-06-30
2010-06-26
Bio Hazard Outbreak / Resident Evil Outbreak Costume
Collections - Costume 的獲得條件與支給分數
Labels:
Bio Hazard Outbreak
,
Game
,
Resident Evil Outbreak
Bio Hazard Outbreak / Resident Evil Outbreak Gallery
Collections - Gallery 的獲得條件與支給分數
Labels:
Bio Hazard Outbreak
,
Game
,
Resident Evil Outbreak
2010-06-15
Bio Hazard 4 / Resident Evil 4 回復藥物 (Recover Items)
遊戲中所有回復藥物的組合、圖像及名單
Labels:
Bio Hazard 4
,
Game
,
Resident Evil 4
Bio Hazard 4 / Resident Evil 4 射擊房 (Shooting Room) D
射擊房D目標位置
Labels:
Bio Hazard 4
,
Game
,
Resident Evil 4
Bio Hazard 4 / Resident Evil 4 射擊房 (Shooting Room) C
射擊房C目標位置
Labels:
Bio Hazard 4
,
Game
,
Resident Evil 4
Bio Hazard 4 / Resident Evil 4 射擊房 (Shooting Room) B
射擊房B目標位置
Labels:
Bio Hazard 4
,
Game
,
Resident Evil 4
Bio Hazard 4 / Resident Evil 4 射擊房 (Shooting Room) A
射擊房A目標位置
Labels:
Bio Hazard 4
,
Game
,
Resident Evil 4
2010-06-10
Bio Hazard 4 / Resident Evil 4 非寶物售價 (Non-Treasure Price)
遊戲中所有非寶物的售價
Labels:
Bio Hazard 4
,
Game
,
Resident Evil 4
Bio Hazard 4 / Resident Evil 4 物品 (Items)
遊戲中所有物品的組合、圖像及名單
Labels:
Bio Hazard 4
,
Game
,
Resident Evil 4
2010-06-07
Bio Hazard 4 / Resident Evil 4 寶物售價 (Treasure Price)
遊戲中所有寶物的售價
Labels:
Bio Hazard 4
,
Game
,
Resident Evil 4
2010-06-04
Bio Hazard Outbreak File 2 / Resident Evil Outbreak File 2 記憶 (Flashback) SP Items
「記憶」SP Item 的獲得條件及地方
Bio Hazard Outbreak File 2 / Resident Evil Outbreak File 2 異界 (Underbelly) SP Items
「異界」SP Item 的獲得條件及地方
2010-06-03
Bio Hazard Outbreak File 2 / Resident Evil Outbreak File 2 咆哮 (Wild Things) SP Items
「咆哮」SP Item 的獲得條件及地方
利用 Java 將 Zip 格式解壓縮 (Use Java to decompress a ZIP file)
import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.util.zip.ZipEntry; import java.util.zip.ZipInputStream;
public static void decompress(File source, File destination) throws IOException{
if (!destination.exists() || destination.isDirectory()){
destination.mkdirs();
ZipInputStream zis = new ZipInputStream(new FileInputStream(source));
byte[] buffer = new byte[1024];
for (ZipEntry zip; (zip = zis.getNextEntry()) != null;){
File file = new File(destination, zip.getName());
if (zip.isDirectory()){
file.mkdirs();
} else {
FileOutputStream fos = new FileOutputStream(file);
for (int length; (length = zis.read(buffer)) > 0;){
fos.write(buffer, 0, length);
}
fos.close();
}
zis.closeEntry();
}
zis.close();
}
}
Labels:
decompression
,
Java
,
programming
,
unzip
利用 Java 將檔案與資料夾壓縮成 Zip 格式 (Use Java to compress file(s) or directory(ies) as ZIP format)
import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.util.zip.Deflater; import java.util.zip.ZipEntry; import java.util.zip.ZipOutputStream;
public static void compress(File source, File destination) throws IOException{
compress(source, destination, null, Deflater.DEFAULT_COMPRESSION);
}
public static void compress(File source, File destination, String comment, int level) throws IOException{
ZipOutputStream zos = new ZipOutputStream(new FileOutputStream(destination));
zos.setComment(comment);
zos.setLevel(level);
compress(zos, source.getParent(), source);
zos.flush();
zos.close();
}
private static void compress(ZipOutputStream zos, String rootpath, File source) throws IOException{
String filename = source.toString().substring(rootpath.length() + 1);
if (source.isFile()){
zos.putNextEntry(new ZipEntry(filename));
FileInputStream fis = new FileInputStream(source);
byte[] buffer = new byte[1024];
for (int length; (length = fis.read(buffer)) > 0;){
zos.write(buffer, 0, length);
}
fis.close();
zos.closeEntry();
} else if (source.isDirectory()){
zos.putNextEntry(new ZipEntry(filename + "/"));
zos.closeEntry();
File[] files = source.listFiles();
for (File file : files){
compress(zos, rootpath, file);
}
}
}
Labels:
compression
,
Java
,
programming
,
zip
訂閱:
意見
(
Atom
)