怎么取出字符串到数组中

怎么取出字符串到数组中,第1张

方法:

先拆分,然后把拆分的字符串存到数据组中即可,代码参考public class STest{ public static void main(String[] args) { String t="abc,edf,xyz"; String[] chrstr=tsplit(","); for(int i=0;i<chrstrlength;i++) { Systemoutprintln(chrstr[i]); } }}

import javaioFile;

import javaioFileInputStream;

public class ReadName {

public static void main(String[] args) throws Exception{

//假如你d盘的根目录下有一个文件叫nametxt

//里面的存放的是国家名,格式如下:

//"中国;日本;美国;朝鲜" ;

File file = new File("d://nametxt") ;

FileInputStream fis = new FileInputStream(file) ;

byte b[] = new byte[1024] ; // 数组大小由文件决定

int len = 0 ;

int temp = 0 ; // 接收每一个读取进来的数据

while((temp=fisread())!=-1){

// 表示还有内容,文件没有读完

b[len] = (byte)temp ;

len++ ;

}

fisclose() ; // 关闭输出流

String str = new String(b,0,len) ;

String[] names = strsplit(";") ;

for(String name : names){

Systemoutprintln(name) ;

}

}

}

以上就是关于怎么取出字符串到数组中全部的内容,包括:怎么取出字符串到数组中、java程序字符串数组读取、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9726994.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-01
下一篇 2023-05-01

发表评论

登录后才能评论

评论列表(0条)

保存