import java.net.URLEncoder;
class bing{
String urlx,str;
String[] com=new String[2000];
void makedata(int n){
getcode gc =new getcode();
gc.makedata();
com=gc.com;
urlx="";
try{
urlx="http://api.bing.com/rss.aspx?Source=News&Market=ja-JP&Version=2.0&Query=";
str = URLEncoder.encode(com[n],"utf-8");
urlx=urlx+str;
}catch(Exception e) { System.err.println(e); }
}
}
最終更新:2011年04月11日 10:13