读取本地txt配置文件,获取ServerIP

1.

2.

3.

4.

5.

6.

7.

private void CreateTxt(string filename)
{
if (filename == "")
{
Debug.LogError("请输入文件名");
return;
}

string filePath = Application.dataPath + "/StreamingAssets" + "/" + filename;
if (!File.Exists(filePath))
{
FileStream fs1 = new FileStream(filePath, FileMode.Create, FileAccess.Write);//创建写入文件
StreamWriter sw = new StreamWriter(fs1);
sw.WriteLine("hhhhhh--");//开始写入值
sw.Close();
fs1.Close();
//Console.WriteLine("txt no exit");
}
}

private void ReadTxt(string filename)
{
string filePath = Application.dataPath + "/StreamingAssets" + "/" + filename;
if (!File.Exists(filePath))
{
Debug.LogError("文件不存在");
return;
}
else
{
FileStream fs = new FileStream(filePath, FileMode.Open, FileAccess.Read);
StreamReader sr = new StreamReader(fs);
string fileContent = sr.ReadToEnd();
readTxtContent.text = fileContent;
sr.Close();
fs.Close();
}
}

private void WriteTxt(string filename)
{
string filePath = Application.dataPath + "/StreamingAssets" + "/" + filename;
if (!File.Exists(filePath))
{
Debug.LogError("文件不存在");
return;
}
else
{
FileStream fs = new FileStream(filePath, FileMode.Open, FileAccess.Write);
StreamWriter sw = new StreamWriter(fs);
sw.WriteLine(writeTxtContent.text);//开始写入值
sw.Close();
fs.Close();
}
}

时间: 2024-10-25 07:17:29

读取本地txt配置文件,获取ServerIP的相关文章

springmvc加载xml文件读取本地properties配置文件

org.springframework.beans.factory.config.PropertyPlaceholderConfigurer.由这个类别,您可以将一些组态设定,移出至.properties档案中,如此的安排可以让XML定义档负责系统相关设定,而.properties档可 以作为客户根据需求,自定义一些相关的参数.实际上,PropertyPlaceholderConfigurer起的作用就是将占位符指向的数据库配置 信息放在bean中定义的工具. (1)使用以下方式读取单个本地文件

js读取本地txt文件中的json数据

list.txt内容 [ {"optionKey":"1", "optionValue":"Canon in D"}, {"optionKey":"2", "optionValue":"Wind Song"}, {"optionKey":"3", "optionValue":"W

java读取本地txt文件并插入数据库

package com.cniia.ny.web.control.configManage; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.IOException; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; im

sql 读取本地txt文件批量插入数据库

--导入 INSERT INTO [netmonsdb].[dbo].[keywordlist]([keyword]) SELECT * FROM OPENROWSET( BULK 'D:/xmsys/dd/dd.txt', FORMATFILE='d:/BCPFORMAT.xml' --, FIRSTROW=2 ) AS T; <?xml version="1.0"?> <BCPFORMAT xmlns="http://schemas.microsoft.

C# 读取txt配置文件,并且可以更新配置文件

首先,配置使用=号隔开的,等号前面是表示配置项,后面是配置的值 功能:可以读取txt配置文件和修改txt配置文件 我们可以理解成key=value的形式,上面的截图,可以说明一些,不废话了,下面上代码吧. private static string _path_config = Application.StartupPath + "\\config.txt"; //配置文件 private void Form1_Load(object sender, EventArgs e) { //

JS读取本地文件及目录的方法

Javascript是网页制作中离不开的脚本语言,依靠它,一个网页的内容才生动活泼.富有朝气.但也许你还没有发现并应用它的一些更高级 的功能吧?比如,对文件和文件夹进行读.写和删除,就象在VB.VC等高级语言中经常做的工作一样.怎么样,你是否需要了解这方面的知 识?那就请跟我来,本文将详细描述如何使用Javascript语言进行文件操作. 一.功能实现核心:FileSystemObject 对象 其实,要在Javascript中实现文件操作功能,主要就是依靠FileSystemobject对象.

c#读取xml文件配置文件Winform及WebForm-Demo具体解释

我这里用Winform和WebForm两种为例说明怎样操作xml文档来作为配置文件进行读取操作. 1.新建一个类,命名为"SystemConfig.cs".代码例如以下: <span style="font-family:Microsoft YaHei;font-size:14px;">using System; using System.Collections.Generic; using System.Text; using System.Xml;

u3d读取xml txt

u3d读取xml文件和u3d 读取txt外部文件 using UnityEngine;using System.Collections;using System.Xml;using System.Xml.Serialization;using System.IO;using System.Text; public class u3dxml : MonoBehaviour{    private string m_filename = "2.txt";    private string

前台JS(type=‘file’)读取本地文件的内容,兼容各种浏览器

[自己测了下,能兼容各种浏览器,但是读取中文会出现乱码.自己的解决方法是用notepad++把txt文件编码改为utf-8(应该是和浏览器编码保持一致吧?..)] 原文  http://blog.csdn.net/xwq1012/article/details/41941895 参考如下: http://blog.csdn.net/lejuo/article/details/11528243 前台JS读取本地文件内容,兼容IE7.8.9.10 FF Chrome等各种版本,纠结了好长时间,终于找