java 文件读取 逗号分隔,如何从JAVA中的文本文件中读取逗号分隔值?

I have got this text file with latitude and longitude values of different points on a map. I want to store these coordinates into a mySQL database using hibernate. I want to know how can I split my string into latitudes and longitudes? What is the general way to do these type of things that is with other delimiters like space, tab etc.?

File:

28.515046280572285,77.38258838653564

28.51430151808072,77.38336086273193

28.513566177802456,77.38413333892822

28.512830832397192,77.38490581512451

28.51208605426073,77.3856782913208

28.511341270865113,77.38645076751709

28.510530488025346,77.38720178604126

28.509615992924807,77.38790988922119

28.50875805732363,77.38862872123718

28.507994394490268,77.38943338394165

28.50728729434496,77.39038825035095

28.506674470385246,77.39145040512085

28.506174780521828,77.39260911941528

28.505665660113582,77.39376783370972

28.505156537248446,77.39492654800415

28.50466626846366,77.39608526229858

28.504175997400655,77.39724397659302

28.503685724059455,77.39840269088745

28.503195448440064,77.39956140518188

28.50276174118543,77.4007523059845

28.502309175192945,77.40194320678711

28.50185660725938,77.40313410758972

28.50140403738471,77.40432500839233

28.500951465568985,77.40551590919495

28.500498891812207,77.40670680999756

28.5000463161144,77.40789771080017

28.49959373847559,77.40908861160278

Code I am using to read from file:

try {

BufferedReader in = new BufferedReader(new FileReader("G:\\RoutePPAdvant2.txt"));

String str;

str = in.readLine();

while ((str = in.readLine()) != null) {

System.out.println(str);

}

in.close();

} catch (IOException e) {

System.out.println("File Read Error");

}

解决方案

You may use the String.split() method:

String[] ar=str.split(",");

After that, use Double.parseDouble () method to parse the string value to double.

double latitudes=Double.parseDouble(ar[0]);

double longitudes=Double.parseDouble(ar[1]);

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值