使用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);
}