我正在使用此代码从 pdb 网站下载 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 字节。我尝试从同一个站点下载另一个不同格式的文件,没有任何问题。