摘要: 在阿里云的linux服务器上默认是没有安装java环境的,需要自己安装。查了许多资料,发现这篇文章简洁易用。http://www.cnblogs.com/cloudwind/archive/2012/10/19/2731263.html最后发现,这句命令更好用:yum install java-1.... 阅读全文
posted @ 2015-05-30 11:03 深海巨坑 阅读(502) 评论(0) 推荐(0) 编辑
摘要: 消息队列:zeromqnosql:Redis,MonogoDBRestfull:WebApijava三方通讯组件:httpcomponents、Ksoap2 阅读全文
posted @ 2015-01-31 18:17 深海巨坑 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 地址: 1.命名管道:用于同一台机器的跨进程通讯。URL表示方式为:net.pipe:// ;由于是在同一台机器的不同进程间通讯,所以不用定义端口号. 阅读全文
posted @ 2014-07-22 17:40 深海巨坑 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 步骤一:定义契约[ServiceContract] //定义服务契约 需要引用System.ServiceModel public interface ICalculator { [OperationContract] //定义消息契约 dou... 阅读全文
posted @ 2014-07-22 13:43 深海巨坑 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 案例1:获取指定节点的内容 public void XmlTest() { string xmlFileName=AppDomain.CurrentDomain.BaseDirectory+"\\book.xml"; if (File.Exi... 阅读全文
posted @ 2014-07-21 12:27 深海巨坑 阅读(272) 评论(0) 推荐(0) 编辑
摘要: public void FileStream() { FileStream file; string fileName=AppDomain.CurrentDomain.BaseDirectory+"\\log.txt"; //应用程序根地... 阅读全文
posted @ 2014-07-21 10:51 深海巨坑 阅读(122) 评论(0) 推荐(0) 编辑
摘要: CKeditor 配置使用CKeditor 配置使用一、使用方法:1、在页面<head>中引入ckeditor核心文件ckeditor.js<script type="text/javascript" src="ckeditor/ckeditor.js"></script>2、在使用编辑器的地方插入HTML控件<textarea><textarea id="TextArea1" cols="20" rows="2" class="c 阅读全文
posted @ 2013-05-22 12:23 深海巨坑 阅读(330) 评论(0) 推荐(0) 编辑
摘要: 项目结构如下: 准备工作:http://ckeditor.com/download下载ckeditor(本例中使用的是3.2版本),下载完后,解压拷贝到WebContent目录下,导入smartupload.jar包,用于处理图片和视频的上传。创建upload文件夹用于存放图片和上传的视频。①修改ckeditor目录下的config.js文件CKEDITOR.editorConfig = function( config ){ // Define changes to default configuration here. For example: // config.language = & 阅读全文
posted @ 2013-05-21 23:24 深海巨坑 阅读(292) 评论(0) 推荐(0) 编辑
摘要: spring Web MVC框架提供了org.springframework.web.filter.CharacterEncodingFilter用于解决POST方式造成的中文乱码问题,具体的web.xml配置如下:1 <filter>2 <filter-name>CharacterEncodingFilter</filter-name>3 <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>4 <init-para 阅读全文
posted @ 2013-05-21 09:45 深海巨坑 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2013-05-20 22:24 深海巨坑 阅读(114) 评论(0) 推荐(0) 编辑