开发股票交易软件,从哪里获取股票数据?
以大秦铁路(股票代码:601006)为例。如果想获取其最新行情,只需访问新浪的股票数据接口:/list=sh601006,这个url会返回一串文本,例如:
Var hq_str_sh601006= "大秦铁路,27.55,27.25,26.91,27.55,26.20,26.438+0,26.92,
22114263, 589824680, 4695, 26.91, 57590, 26.90, 14700, 26.89, 14300,
26.88, 15100, 26.87, 3100, 26.92, 8900, 26.93, 14230, 26.94, 25150, 26.95, 15220, 26.96, 2008-01-11, 15:05:32";
这个字符串是由很多数据拼接而成的,不同含义的数据之间用逗号隔开。按照程序员的想法,序号从0开始。
0:“大秦铁路”,股票名称;
1:“27.55”,今日开盘价;
2:“27.25”,昨日收盘价;
3:“26.91”,现价;
4:“27.55”,今日最高价;
5:“26.20”,今日最低价;
6:“26.91”,投标价,即“买一”报价;
7:“26.92”,拍卖价,即“卖一”报价;
8:“22114263”,交易的股数,因为股票交易的基本单位是100股,所以在使用的时候,这个值通常要除以100;
9:“589824680”,交易金额,单位是“元”,为了一目了然,“万元”通常是交易金额的单位,所以这个值通常除以万;
10:“4695”,“买一”申请4695股,即47手;
11:“26.91”,“买一个”报价;
12:“57590”,“买两个”
13:“26.90”,“买二”
14:“14700”,“买三”
15:“26.89”,“买三”
16:“14300”,“买四”
17:“26.88”,“买四”
18:“15100”,“买五”
19:“26.87”,“买五”
20:“3100”,“卖一”申报3100股,即31手;
21:“26.92”,“卖一个”优惠
(22,23),(24,25),(26,27),(28,29)分别是“卖二”到“卖四”。
30:“2008-01-11”,日期;
31:“15:05:32”,时间;
相应的,你也可以得到深圳股市的信息,但是这种方法的缺点是只能得到最新或者当前的股票数据,不能将历史数据导入数据库。当然,你也可以以某一天为起点,自己重新创建历史数据。于是继续寻找其他网站接口,最后找到了雅虎财经网站,它提供了一个可以直接将股票历史数据导入Excel的接口,真的很方便!直接在浏览器address /table.csv中数据化URL就可以了?S=股票代码,但是手工输入然后一个一个下载保存太麻烦了。光是上交所的股票就有800多只,手动下载后估计还得重新下载。所以我的想法是,1,多线程下载股票文件。2.将这些文件导入数据库。
1.1文件下载类:
导入Java . io . *;
导入Java . net . *;
导入Java . util . list;
导入fatowen . stock system . sys config . data . download VO;
公共类HttpDownFile {
private static int BUFFER _ SIZE = 8096;
/* *根据URL下载文件并保存。
* @param destUrl字符串
* @param文件名字符串
* @抛出异常
*/
公共void saveToFile(String destUrl,String fileName)引发IOException {
FileOutputStream fos = null
BufferedInputStream bis = null
HttpURLConnection /table.csv?s = ";
字符串结果= " ";
字符串保存路径= " ";
public HisDataAddThread(List paramList,String savePath){
this . my param list = param list;
this . save path = save path;
}
公共无效运行(){
while(runFlag){
download data = public data util . getdownloaddata(myParamList);
如果(!Lib.isEmpty(downLoadData)){
HttpDownFile oInstance = new HttpDownFile();
尝试{
oin instance . savetofile(base URL+download data,savePath + downLoadData +"。CSV”);
}catch(异常错误){
system . out . println(err . tostring());
}
}否则{
runFlag = false
}
尝试{
thread . sleep(1000);
} catch (InterruptedException e) {
e . printstacktrace();
}
}
}
公共列表getFailureList() {
返回失败列表;
}
public void setfailurlist(List failurlist){
this . failure list = failure list;
}
公共列表getSuccessList() {
返回成功列表;
}
public void setSuccessList(列出成功列表){
this . success list = success list;
}
}
2.将下载的文件保存到数据库工具类。
导入Java . io . buffered reader;
导入Java . io . file;
导入Java . io . filereader;
导入Java . io . io exception;
导入Java . util . ArrayList;
导入Java . util . iterator;
导入Java . util . list;
公共类CSVUtitl {
private buffered reader buffered reader = null;
private List List = new ArrayList();
public CSVUtitl(){
}
公共CSVUtitl(字符串文件名)引发IOException{
buffered reader = new buffered reader(新文件阅读器(文件名));
String stemp
while((stemp = buffered reader . readline())!= null){
list . add(stemp);
}
}
公共列表getList()引发IOException {
退货单;
}
//获取csv文件中的行数
public int getRowNum(){
返回list . size();
}
//获取csv文件中的列数
public int getColNum(){
如果(!list.toString()。等于("[]"){
//在//csv文件中,列由“,”分隔。
if(list.get(0)。toString()。包含(","){
返回list.get(0)。toString()。拆分(“,”)。长度;
}else if(list.get(0)。toString()。修剪()。长度()!= 0) {
返回1;
}否则{
返回0;
}
}否则{
返回0;
}
}
//获取指定行的值
公共字符串getRow(int index) {
if (this.list.size()!= 0)
return(字符串)list.get(索引);
其他
返回null
}
//获取指定行的值
公共字符串getCol(int index){
if (this.getColNum() == 0){
返回null
}
string buffer scol = new string buffer();
String temp = null
int colnum = this . get colnum();
if(colnum & gt;1){
for(Iterator it = list . Iterator();it . has next();) {
temp = it.next()。toString();
scol = scol.append(temp.split(","[index] +",");
}
}否则{
for(Iterator it = list . Iterator();it . has next();) {
temp = it.next()。toString();
scol = scol.append(temp +",");
}
}
String str = new String(scol . tostring());
str = str.substring(0,str . length()-1);
返回字符串;
}
//获取指定行和列的值。
公共字符串getString(int row,int col) {
String temp = null
int colnum = this . get colnum();
if(colnum & gt;1){
temp = list.get(row)。toString()。split(","[col];
}else if(colnum == 1) {
temp = list.get(row)。toString();
}否则{
temp = null
}
返回温度;
}
public void CsvClose()抛出IOException {
this . buffered reader . close();
}
公共void运行(字符串文件名)引发IOException {
CSVUtitl cu =新的CSVUtitl(文件名);
for(int I = 0;我& ltCu . getrownum();i++){
string sscc tag = format data(Cu . getstring(I,1));//获取第一行第一列的数据。
string SiteName = format data(Cu . getstring(I,2));//获取第一行第二列的数据。
string station id = format data(Cu . getstring(I,3));
//将数据保存到数据库
......
......
......
}
以立方计量的CsvClose();
}
公共字符串格式数据(字符串基础数据){
字符串结果= null
如果(!"".等于(基础数据)和。& ampbaseData!= null){
if(base data . length()& gt;1){
result = base data . substring(1,base data . length());
result = result.substring(0,result . length()-1);
}否则{
result = baseData
}
}否则{
结果= " ";
}
返回result . trim();
}
公共静态void main(String[] args)引发IOException {
CSV utitl test = new CSV utitl();
尝试{
文件路径=新文件(" e:\ \ data ");
file[]f = path . list files();
list l = new ArrayList();
for(int I = 0;我& ltf .长度;i++){
if(f[i]。getName()。endsWith("。csv "))
l . add(f[I]);www.2cto.com
}
迭代器it = l . iterator();
while(it.hasNext()){
File ff =(File)it . next();
test . run(path . tostring()+file . separator+ff . getname());
}
}catch(异常e){
}
}
}