R-Type Final Fighter 008

previous next
Number: 008
Model: R-9AD3
Code: King's Mind
獲得條件:
使用 007 120分鐘
How to get:
Using Fighter 007 120 minutes

見下文

Beam
Continue reading...

R-Type Final Fighter 004

previous next
Number: 004
Model: R-9A4
Code: Wave Master
獲得條件:
使用 003 60分鐘
How to get:
Using Fighter 003 60 minutes

見下文

Beam
Continue reading...

R-Type Final Fighter 005

previous next
Number: 005
Model: R-9AF
Code: Morning Glory
獲得條件:
獲得 004 及 054 後遊戲時間經過 120分鐘
How to get:
Get Fighter 004, 054 after 120 minutes

見下文

Beam
Continue reading...

R-Type Final Fighter 003

previous next
Number: 003
Model: R-9A3
Code: Lady Love
獲得條件:
密碼(日/韓) 4170 4170
密碼(美/歐) 5270 0725
How to get:
Password (Japan/Korean) 4170 4170
Password (USA/European) 5270 0725

見下文

Beam
Continue reading...

R-Type Final Fighter 002

previous next
Number: 002
Model: R-9A2
Code: Delta
獲得條件:
完成 1.0
How to get:
Complete 1.0

見下文

Beam
Continue reading...

R-Type Final Fighter 001

previous next
Number: 001
Model: R-9A
Code: Arrow Head
獲得條件:
遊戲開始時已經存在
How to get:
At the beginning

見下文

Beam
Continue reading...

R-Type Final 標準樹狀列表 (R-Type Final Standard Tree List)

001 002 003 004
005
006 007 008
009 010
011 012 013
014 015 016 017
024 025 018 019
026 020 021 022
027 028 023
029 030 031
032 033
0

利用 Java 下載 HTTP 網絡上的檔案 (Use Java to download file from HTTP)

import java.io.IOException;import java.net.ConnectException;import java.net.URL;import java.io.InputStream;import java.io.FileOutputStream;

public static void download(String source, String destination) throws IOException, ConnectException{    InputStream is = new URL(source).openConnection().getInputStream();    FileOutputStream fos = new FileOutputStream(destination);    byte[] buffer = new byte[1024];    for (int length; (length = is

於 Ubuntu 手動安裝 Java EE 與 NetBeans 等軟件 (Manual install Java EE and NetBeans)

前後 https://www.netbeans.org/
Visit https://www.netbeans.org/

選擇語言後按 "Download Free NetBeans IDE 6.8"
(NetBeans IDE 6.8 是 2010-04-17 最新版本)
Select the language and click "Download Free NetBeans IDE 6.8"
(NetBeans IDE 6.8 is the latest version on 2010-04-17)

選擇語言

利用 Java 改變圖像的色相 (Use Java the edit the Hue value of an image)

import java.awt.image.BufferedImage;import java.awt.Color;

public static BufferedImage hue(BufferedImage source, float value){    BufferedImage out = new BufferedImage(source.getWidth(), source.getHeight(), source.getType());    for (int i = 0; i < source.getWidth(); i++){        for (int j = 0; j < source.getHeight(); j++){            Color color = new Color(source
見下文
Continue reading...