Step1.安装sendmail来发邮件#yum-yinstallsendmail#/etc/init.d/sendmailstart#chkconfigsendmailonStep2.安装邮件客户端#yum-yinstallmutt2.1添加发件人信息,如下#vim/etc/Muttrcsetcharset="utf-8"#设置发邮件编码setenvelope_from=yessetrfc2047_parameters=yes#解决附件乱..
分类:
其他好文 时间:
2014-08-02 23:35:55
阅读次数:
2598
1 /etc/init.d/mysql start 2 3 mysql>create database record character set 'utf8' collate 'urf8_general_ci'; 4 5 mysql>use record 6 7 mysql>create ...
分类:
数据库 时间:
2014-08-02 23:06:44
阅读次数:
283
1、开机狂按shift键,进入grub页面,用上下键移到第二行的恢复模式,按e(注意不是回车) 即Ubuntu,With Linux 3.2.0-23-generic(recovery mode)? 2、把ro recovery nomodeset 改成rw single init=/bin/bash ...
分类:
其他好文 时间:
2014-08-02 18:34:04
阅读次数:
263
NSString类是我们经常使用的类,这里对其用途及常用的一些方法做一些归类。1>字符串的创建NSString *str = @"字符串内容“; //直接使用字符串常量的赋值方式NSString *str = [NSString alloc ] init]; //创建一个空的字符串对象NSStr.....
分类:
其他好文 时间:
2014-08-02 15:22:03
阅读次数:
248
InitializingBean
Spirng的InitializingBean为bean提供了定义初始化方法的方式。InitializingBean是一个接口,它仅仅包含一个方法:afterPropertiesSet()。
Bean实现这个接口,在afterPropertiesSet()中编写初始化代码:
package research.spring.beanfactory.ch4...
分类:
编程语言 时间:
2014-08-02 12:50:53
阅读次数:
247
import java.util.Arrays;public class Stack { private static final int INIT_SIZE = 10; private Object[] datas; private int size; pu...
分类:
其他好文 时间:
2014-08-02 12:31:43
阅读次数:
243
参考:https://groups.google.com/forum/#!topic/theano-users/teA-07wOFpE这个问题出现的原因是,我在读文件的时候,应该Train_X读成matrix(rows * dimensions),Train_Y读成vector(因为只有label一...
分类:
编程语言 时间:
2014-08-02 01:32:12
阅读次数:
553
UIWebView *callWebview =[[UIWebView alloc] init] ;
// tel: 或者 tel://
NSURL *telURL =[NSURL URLWithString:@"tel://10086"];
[callWebview loadRequest:[NSURLRequest requestWithURL:telURL...
分类:
移动开发 时间:
2014-08-01 19:44:12
阅读次数:
366
今天尝试在ubuntu下搭建tomcat,因为某些事情 中途删掉了,后来想重装居然出现了chmod: cannot access `/etc/tomcat7/tomcat-users.xml': No such file or directory导致无法正常安装,后来google 了一下,发现了解决...
分类:
其他好文 时间:
2014-08-01 19:34:32
阅读次数:
233
前段时间做了一个UISearchBar相关的需求,今天也总结以下。1、UISearchBar自定义背景、取消按钮中文设置UISearchBar*seachBar=[[UISearchBaralloc]init];//修改搜索框背景seachBar.backgroundColor=[UIColorcl...
分类:
其他好文 时间:
2014-08-01 19:34:02
阅读次数:
250