十年网站开发经验 + 多家企业客户 + 靠谱的建站团队
量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决
try{
创新互联建站专注于浪卡子网站建设服务及定制,我们拥有丰富的企业做网站经验。 热诚为您提供浪卡子营销型网站建设,浪卡子网站制作、浪卡子网页设计、浪卡子网站官网定制、微信平台小程序开发服务,打造浪卡子网络公司原创品牌,更为您提供浪卡子网站排名全网营销落地服务。
InputStream myInput = mcontext.getResources().openRawResource(R.raw.medicalspeciality);
InputStreamReader reader = new InputStreamReader(myInput);
BufferedReader breader = new BufferedReader(reader);
String str;
FileWriter myOutput = new FileWriter(outFileName, true);
while ((str = breader.readLine()) != null) {
System.out.println(i+++str);
}
// Close the streams
myOutput.flush();
myOutput.close();
myInput.close();
}catch (Exception e) {
// TODO: handle exception
e.getStackTrace();
}
ListBox1.Items(0).ToString() '第一行
mid(ListBox1.Items(0).ToString(),2,1) '第一行第二个字符
该控件只有1列
Private
Sub
Command1_Click()
Open
"f:\新建
文本文档
.inf"
For
Input
As
#1
'(打开文件,方式是读取)
for
i=1
to
n
Line
Input
#1,
s
'(读取第一行)
next
i
Text1.Text
=
s
Close
#1
'('关闭文件)
End
Sub
这里n取几,text1里显示的就是第几行。
无法读取指定的某一行,只能通过对整个文本框里的字符串,采用字符串函数等方法,分离获得某一行的内容。