内存从网上论坛摘抄整理思路:给控件设置多行属性,设置垂直滚动条,Auto
Vscroll设置为true,放入文本后把插入点设置到末尾pEdit->LineScroll(pEdit->GetLineCount());
滚动条滚动到最下端int len = pEdit->GetWindowTextLen...
分类:
其他好文 时间:
2014-05-01 13:27:49
阅读次数:
267
JavaWeb--中文乱码小结 JavaWeb--中文乱码小结 0.纯粹html乱码:
换个editor吧(有时候notepad都比sublime_text好用),最好是在之间添加 1.jsp到jsp之间,表单
(假设包含表单的页面为a,提交的action为b) get:不乱码 post:乱码(在b...
分类:
Web程序 时间:
2014-05-01 12:54:13
阅读次数:
530
关于使用request.getParameter()得到中文乱码的问题,在网上查找了一天终于找到了一个解决方案,是一个比较笨的方法,要在每个使用request.getParameter()的地方添加如下代码,代码如下:1
String name=request.getParameter("nam.....
分类:
Web程序 时间:
2014-05-01 12:46:19
阅读次数:
399
1、【系统设置】->【外观】->【行为】->【自动隐藏启动器】,隐藏左侧边栏后,可以按快捷键【CTRL+a】弹出侧边栏。
2、QtCreator调试,提示【ptrace不允许的操作】解决方法: sudo vi /etc/sysctl.d/10-ptrace.conf 设置
kernel.yama.p...
分类:
其他好文 时间:
2014-05-01 12:36:32
阅读次数:
376
StreamWriter SW; SW =
File.CreateText(@"C:\Documents and Settings\Administrator\桌面\MyTextFile.txt");
SW.WriteLine("File Created ...
分类:
其他好文 时间:
2014-05-01 12:01:44
阅读次数:
278
到AndroidSDK官网下载ADT离线升级包然后在Eclipse中菜单Help->Installnewsoftware->Add->Archrive,选择下载回来的ADT离线更新包,确定!如果安装失败或什么的,可能要先卸装旧版本:Help->Installnewsoftware->alreadyi...
分类:
其他好文 时间:
2014-05-01 11:24:41
阅读次数:
328
* {
margin:0;
padding:0;
}
html,
body,
#box {
height:100%;
font:small/1.5 "宋体", serif;
}
body {
text-align:center;
}
#box {
text-align:left;
background:#666;
display:table;
wi...
分类:
Web程序 时间:
2014-04-29 13:36:20
阅读次数:
469
欢迎加入我们的QQ群,无论你是否工作,学生,只要有c / vc / c++ 编程经验,就来吧!158427611
所谓的unicode文件,无非就是在文件头部插入了 0xFFFE的标志。。。读写的时候对应的读写 就可以了。
namespace fileStream
{
bool readFile_Unicode( const string &file ,wstr...
分类:
编程语言 时间:
2014-04-28 10:22:41
阅读次数:
678
今天有个需求需要在url中传入中文参数,结果在后台取得时出现乱码,怀疑可能是编码问题,上网查询了资料,试了几种办法,发现有一种可行,记录在此,以便查阅。
url中用encodeURI 进行2次编码:
Ext.Ajax.request({
url:"updateadminuser.do?"+userid+"&uname="+encodeURI(encodeURI(uname)),
succ...
分类:
Web程序 时间:
2014-04-27 21:48:59
阅读次数:
342
program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
namespace Tst
{
class Program
{
static void Main(string[] arg...
分类:
移动开发 时间:
2014-04-27 21:35:59
阅读次数:
467