このコードを使用して、pdb Web サイトから fasta シーケンス ファイルをダウンロードしています。pdb id は文字列 protid です。
import java.io.*;
import java.net.URL;
import java.util.Scanner;
public class Trialoffile
{
public static void main(String[] args){
InputStream url;
String protID="2ly4";
try{
url = new URL("http://www.rcsb.org/pdb/download/downloadFile.do?fileFormat=FASTA&compression=NO&structureId="+protID).openStream();
Scanner fasta = new Scanner(url);
BufferedWriter bw= new BufferedWriter(new FileWriter(protID+".txt", true));
//output file is prepared.
while(fasta.hasNextLine()){
bw.write(fasta.nextLine()+"\n");
}
}
catch (Exception e)
{
System.err.println("File input error on:"+protID);
}
}
}
エラーは発生していませんが、書き込まれたファイルは 0 バイトです。同じサイトから別の形式の別のファイルをダウンロードしようとしましたが、問題はありませんでした。