- 浏览: 78131 次
- 性别:
- 来自: 长沙
最新评论
-
appsna:
该问题解决了没,我也遇到了,该咋办
无法连接到localhost目标服务器上未安装SMTP服务 -
taoge2121:
神贴,我怎么没想到用ByteArrayOutputStream ...
Java中Image类型转换成 Byte数组
文章列表
更改Tomcat容器默认编码方式:
encoding inherited from container
change the default setting of eclipse eclipse encoding inherited from container Window-->Preferences->General-->Workspace-->Text file encodin
加载X509Certificate证书:
// X509证书地址
string certificateFile = "my.cer"
FileStream fs = new FileStream(certificateFile, FileMode.Open, FileAccess.Read);
byte[] certBytes = new byte[fs.Length];
fs.Read(certBytes, 0, System.Conver ...
在Windows Mobile和Windows Embedded CE开发过程中经常会遇到路径问题。在论坛中还有不少人下面的问题。
“找不到文件的异常”
其实这个问题很容易解决,路径一般分为绝对路径和相对路径,下面讲述如何查这些路径。
绝对路径
查绝对路径,首先需要ActiveSync设备。
右键点击Explore
点击 My Windows Mobile-Based Deivce
win7管理员打开组策略,拒绝访问
- 博客分类:
- 操作系统
管理员打开组策略,拒绝访问。
把 C:\WINDOWS\system32\GroupPolicy\gpt.ini 删了,再运行 gpedit.msc 就OK 了
(感谢帖作者!):http://social.microsoft.com/Foru ... b-990b-972252436985
Tomcat 配置 ssl
- 博客分类:
- Tomcat
1,cd..%JAVA_HOME%/.bin 为tomcat生成服务端证书命令如下:证书名称为:server.keystore
Keytool -genkey -v -alias tomcat -keyalg RSA -keystore server.keystore
2,为浏览器生成证书,格式为PKCS12,如下命令:
Keytool -genkey -v -alias myKey -keyalg RSA -storetype PKCS12 -keystore my.p12 -dname "CN=localhost,OU=localhost,O=localhost, ...
Eclipse WTP creates its own server.xml file which it places in some folder which configures the tomcat instance you are running for your web project. If you double click on the server in the servers list you get a nice screen which makes it simple to configure some aspects of the server.xml file.
...
C#的winform中控制TextBox中只能输入数字
private void textBox3_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e)
{
//阻止从键盘输入键
e.Handled = true;
if(e.KeyChar>='0' && e.KeyChar <='9')
{
e.Handled = false;
}
}
多条件的:
private void T ...
MyBatis3 模糊查询 & xxx is ambiguous in Mapped Statements collection异常
转载
模糊查询:
工作中用到,写三种用法吧
1. sql中字符串拼接
SELECT * FROM tableName WHERE name LIKE CONCAT(CONCAT('%', #{text}), '%');
VS2008下编译更改项目的文件夹位置后,VS2008无法打开项目文件例如:原文件夹位置:D:\C++ Project\fig21.5更改为:E:\C++ Project\fig21.5使用VS2008无法打开新目录下项目文件。
解决方法:
修改sln文件中的路径字符串即可.
Java服务端,通过WebService传送image.将image转换为Byte数组:
BufferedImage bufimg;
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ImageIO.write(bufimg,"jpg",baos);
byte[] by = baos.toByteArray();
C#客户端,将Byte[]转换成Image:
byte[] by = iVerifyCode.getVerifyImg();// 调用WebService服务iVerify ...
eclipse中文注释字体太小
- 博客分类:
- eclipse
eclipse中文注释字体太小
打开eclipse-preferences-General->Appearance->Colors and Fonts,打开basic,双击Test Font, 微软雅黑 不是@微软雅黑 否则变成横版字体
// MDI主窗体方法
public Size GetMDIClientSize()
{
// 用到ToolStrip时,需减去ToolStrip所占位置
// 如frmMDIParent.ClientSize-new Size(x,y)
return frmMDIParent.ClientSize;
}
// 子窗体方法
frmReject.StartPosition = FormStartPosition. ...
WinForm设置默认焦点
- 博客分类:
- WinForm
winform窗口打开后文本框的默认焦点设置,进入窗口后默认聚焦到某个文本框,两种方法:
①设置tabindex
把该文本框属性里的tabIndex设为0,焦点就默认在这个文本框里了。
②Winform的Activated事件
在Form的Activated事件中添加textBox1.Focus(), 即可获得焦点。
private void Form1_Activated(object sender, EventArgs e)
{
textBox1.Focus();
}
TextBox是可以获得焦点的. 有几个前提:
DataGridView代码添加新行
- 博客分类:
- WinForm
// 新行
DataGridViewRow dr = new DataGridViewRow();
foreach (DataGridViewColumn c in this.dgvGoods.Columns)
{
// 给行添加单元格
dr.Cells.Add((DataGridViewCell)c.CellTemplate.Clone());
}
dr.Cells[0 ...
DVD光驱由于其配置信息(注册表中的)不完整或已损坏,Windows 无法启动这个硬件设备。 (代码 19)
Fix:
将下面的内容拷到记事本里保存成cdgone.reg和EditReg.reg两个文件。双击导入这两个文件。
第一个cdgone.reg的内容为:
REGEDIT4
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E965-E325-11CE-BFC1-08002BE10318}]
"UpperFilters"=-
"LowerFilters&q ...