string path = Server.MapPath("copycode/code.txt");
string[] allCodeLine = System.IO.File.ReadAllLines(path, System.Text.Encoding.UTF8);
System.Text.StringBuilder strb = new Sys...
分类:
Web程序 时间:
2014-07-22 23:02:54
阅读次数:
366
原pom.xml配置文件: 4.0.0 com.my.helloworld hello-world
1.0-SNAPSHOT Maven Hello World Project junit jun...
分类:
其他好文 时间:
2014-07-22 22:59:36
阅读次数:
374
显示中文会变成乱码解决方案:Windows- >Pereferences-
>General->Workspace- >Text File Encoding
选项下选择other,然后输入"GBK"即可当然你系统安装了东亚字体的支持才行,控制面板-区域选项里安装。
分类:
系统相关 时间:
2014-05-10 10:12:30
阅读次数:
358
首先准备两张图片,一张是EditText获得焦点后的边框背景,一张是没有获得焦点时的背景,注意制作成9.png样式的图片,然后在drawable里添加一个selector_edittext_bg.xml文件,内容如下:<?xmlversion="1.0"encoding="utf-8"?><selectorxmlns:android="http://schemas...
分类:
其他好文 时间:
2014-05-03 15:00:05
阅读次数:
328
1、导入jar包
2、拷贝修改配置文件struts.xml,web.xml
将struts.xml文件拷贝到src目录下,改为如下配置
xml version= "1.0" encoding = "UTF-8" ?>
DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD
Struts Con...
分类:
其他好文 时间:
2014-05-02 22:45:20
阅读次数:
335
HTTP1.1请求头:消息头
Accept:text/html,image/*告诉服务器,客户机支持的数据类型Accept-Charset:ISO-8859-1告诉服务器,客户机采用的编码
Accept-EnCoding:gzip,compress告诉服务器,客户机支持的数据压缩格式Accept.....
分类:
其他好文 时间:
2014-05-02 08:46:58
阅读次数:
248
错误信息如下:
File "E:\work\pydev\pythodemo\src\code\string.py", line 1
SyntaxError: Non-ASCII character '\xe5' in file E:\work\pydev\pythodemo\src\code\string.py on line 1, but no encoding declared; see ...
分类:
编程语言 时间:
2014-05-01 22:00:23
阅读次数:
440
看了一些基础的 Python 入门教程后,深深感觉到 Python 的简洁与强大,这是我的第一个 Python Demo。以下是完整代码与运行截图。
代码:
# encoding: utf-8
'''
@author: Techzero
@email: techzero@163.com
@time: 2014-4-30 下午1:31:04
'''
import os
import sys
im...
分类:
编程语言 时间:
2014-04-30 22:18:39
阅读次数:
433
php带csv格式的数据要用到fgetcsv()函数。用这下面的语句$hd=fopen('test.csv','r');
$buf=fgetcsv($hd,1000,',');打开一个test.csv格式的文件,文件中的内容以","号分开。
取出的第一行代表自动含义,比如 id,messaget,time等等。
从第二行开始表示具体的数据,比如1,消息,12:00。
if($buf[1]...
分类:
Web程序 时间:
2014-04-30 22:16:38
阅读次数:
385
encodingFilter
org.springframework.web.filter.CharacterEncodingFilter
encoding
UTF-8
forceEncoding
true
...
分类:
编程语言 时间:
2014-04-29 13:43:21
阅读次数:
329