使用Java中的File類,源url為文件的絕對地址,str為輸入的字元串內容。
代碼如下圖所示:
String str="i love china!"
File txt=new File("url");
if(!txt.exists()){
txt.createNewFile();
}
byte bytes[]=new byte[512];
bytes=str.getBytes(); //新加的
int b=str.length(); //改
FileOutputStream fos=new FileOutputStream(txt);
fos.write(bytes,0,b);
fos.close();
Ⅱ 如何批量在原文件名前隨機添加字元(以便打亂順序)
如何批量在文件名前添加字元
第1步,下載上面的工具後安裝打開,點擊兩個紅框位置處,都可以將需要在文件名前添加字的文件批量導入。
Ⅲ 甯甯蹇欏晩!!!C# 鐨勫瓧絎︿覆鍐欏叆鏂囦歡 鎬庝箞瀹炵幇
using
System.Collections;
using
System.ComponentModel;
using
System.Data;
using
System.Text;
using
System.Drawing;
using
System.IO;
涓嬮潰瀹氫箟鐨勯潤鎬佸嚱鏁版妸瀛楃︿覆s鍐欏叆鏂囦歡璺寰+鏂囦歡鍚嶄負fn鐨勬枃浠朵腑鍘.
public
static
void
SaveFile(string
fn
,
string
s)
{
using
(StreamWriter
savefile
=
new
StreamWriter(fn))
{
savefile.WriteLine(s);
}
}
public
static
void
SaveFile(string
s)
{
using
(StreamWriter
savefile
=
new
StreamWriter(SysFileName))
{
savefile.WriteLine(s);
}
}
Ⅳ 組態王如何把字元串寫入文件
組態王把字元串寫入文件的步驟:
1、在組態王中創建一個文本框,輸入需要寫入文件的字元串。
2、在組態王畫面中添加一個「文件寫入指令」(FileWrite)。
3、雙擊「文件寫入指令」打開屬性窗口,在「文件名」屬性中輸入需要寫入的文缺芹渣件名伏悄和路徑,如「D: est.txt」。
4、在「寫入內容」屬性中輸入需要寫入文件的字元串,可以首雹使用變數或表達式,也可以直接輸入字元串。
5、確認設置後,點擊「運行」按鈕或按下F5鍵,程序會將設置好的字元串寫入指定的文件中。
Ⅳ C++ 瑕佹眰錛氫粠閿鐩樿緭鍏ヨ嫢騫茶屽瓧絎︿覆,姣忚緭涓琛屽氨灝嗗叾鍐欏叆涓涓鏂囨湰鏂囦歡涓錛
//#include "stdafx.h"//vc++6.0鍔犱笂榪欎竴琛.
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
void main(void){
string str;
fstream iofile("text.txt",ios::out);
if(!iofile){
cout << "Create the file failure...\n";
exit(0);
}
cout << "Enter some strings...\n";
while(1){
getline(cin,str);
if(str=="end") break;
iofile << str << endl;
}
iofile.close();
iofile.open("text.txt",ios::in);
while(!iofile.eof()){
iofile >> str;
cout << str << endl;
}
iofile.close();
}
Ⅵ c語言, 如何實現寫數字文件名的遞增,例如,結束文件1.txt 的讀寫,繼續打開2.txt進行操作 。。。3.txt
用一個變數保存文件名,比如整型變數。 然後遞增增加這個整型變數,通過sprintf生成文件名內。
再打開。 比如這容樣。
intindex=1;
charfname[100];
FILE*fp;
for(index=1;index<100;index++)
{
sprintf(fname,"%d.txt",index);
fp=fopen(fname,"w");
//.....
fclose(fp);
}