代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
C
】
C文件内容转换
作者:
chenshigang416
/ 发布于
2013/10/24
/
605
从文件读取指定数据,改写之后写入另一个文件
#include <string> #include <iostream> #include <fstream> #include <sstream> class Line { public: Line(){}; ~Line(){}; std::string name; std::string x; std::string y; std::string z; std::string rotate; static std::string last_name; static int entity_number; }; int Line::entity_number = 0; std::string Line::last_name = ""; Line process(std::string str,std::string path); int main(int argc, char* argv[]) { std::string source_name; std::string dest_name; std::string path; if (argc == 3) { dest_name = argv[1]; dest_name += ".jts.prj"; path = argv[2]; } else{ std::cout<<"参数不够3个\n"; return 0; } std::ifstream source_file; std::ofstream destination_file; source_file.open("model.txt", std::ios_base::in); destination_file.open(dest_name.c_str(),std::ios_base::out); if (!source_file) { printf("Cannot Open File %s\n", source_name); return 0; } if (!destination_file) { printf("Cannot Write to File %s\n", dest_name); return 0; } std::string A1 = "<SLNRoot Version=\"1.0\">\n\ <ObjMgr Type=\"object\">\n"; std::string A2; std::string A3 = "\ </ObjMgr>\n\ <ObjMgr Type=\"ui\" />\n\ <ObjMgr Type=\"bullet\" />\n\ </SLNRoot>"; // Line::init(); destination_file << A1; std::string str; while(getline(source_file,str)){ if (str.length() == 0) { continue; } Line line = process(str,path); std::string a2_front = "\ <Proxy Type=\"Entity\" Name=\"Entity"; std::string number; std::stringstream sss; sss<<Line::entity_number; number = sss.str(); A2 = a2_front+number+"\">\n\ <Property name=\"BasePython\" value=\"NULL\" />\n\ <Property name=\"GraphicsObjectMode\" value=\"Normal\" />\n\ <Property name=\"Move\" value=\""+line.x+" "+line.y+" "+line.z+"\" />\n\ <Property name=\"Rotate\" value=\""+line.rotate+" 0 0\" />\n\ <Property name=\"Scale\" value=\"1 1 1\" />\n\ <Property name=\"Model\" value=\""+path+line.name+".ive\" />\n\ <Property name=\"CollisionShape\" value=\"NULL\" />\n\ <Property name=\"Parent\" value=\"NULL\" />\n\ <Property name=\"Mass\" value=\"0\" />\n\ <Property name=\"CollideGroup\" value=\"-1\" />\n\ <Property name=\"CollideMask\" value=\"-1\" />\n\ <Property name=\"Visible\" value=\"true\" />\n\ </Proxy>\n"; destination_file << A2; } destination_file << A3; source_file.close(); destination_file.close(); } Line process(std::string str,std::string path) { std::string n,x,y,z,r; std::string s1,s2,s3,s4,s5; std::stringstream ss; ss.str(str); ss >> s1 >> s2 >> s3 >> s4 >> s5; std::string frist; frist = str.substr(0,1); if (frist == " " || frist == " ") { n= Line::last_name; x = s1; y = s2; z = s3; r = s4; } else { n = s1; x = s2; y = s3; z = s4; r = s5; } Line::last_name =n; if (r.length() == 0) { r = "0"; } Line line; line.name = n; line.x = x; line.y = y; line.z = z; line.rotate = r; Line::entity_number++; return line; }
试试其它关键字
内容转换
同语言下
.
获取手机通讯录 iOS去除数字以外的所有字符
.
异步加载音乐等资源
.
交通罚单管理系统
.
freemark实现,简单的替换
.
计算斐波那契数列
.
base64解码 包括解码长度
.
图像显示
.
冒泡排序
.
输入十进制数,输出指定进制
.
链式栈
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
chenshigang416
贡献的其它代码
(
2
)
.
C文件内容转换
.
定时任务
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3