首页 > 2014年02月26日 > 全部分享
无法开始服务器! 服务器执行缺少?
今天在处理服务器时出现了server-u不能正常启动出现了无法开始服务器! 服务器执行缺少? 这样的错误,从网站找了一下,解决办法就是如下1.将FTP的目录添加上administrators组权限,就可以了在serv-u的文件夹属性里的安全选项卡上加上system(或其它操作用户)的完全控制权限--...
分类:其他   时间:2014-02-26 20:06:54    收藏:0  评论:0  赞:0  阅读:472
使用POI将从数据库搜索出来的记录导出成EXCEL文件并弹出下载框
poi是将数据输出成excel的非常好用的插件,只需要一个poi-3.7.jar的包,就可以完成如题的功能~网上很多是直接导出成excel的例子,而很少弹出下载框让客户下载导出的文件并选择保存路径的功能,所以我将两者整合了一下。public static void resultSetToExcel(...
分类:数据库技术   时间:2014-02-26 20:09:35    收藏:0  评论:0  赞:0  阅读:541
Lua 代码编写技巧
1.克隆表u = {unpack(table)} 一般克隆长度较小的表2.判断表是否为空if next(t) == nil then.. 判断该表是否为空,包括t={}的情况3.插入表使用t[#t + 1] = value,会比table.insert看起来更加简洁且效果更高4.使用更加简洁的表达形...
分类:其他   时间:2014-02-26 20:01:24    收藏:0  评论:0  赞:0  阅读:364
JSON资料整理
原文:JSON资料整理PS:JSON基础知识整理,大神可移步目录1.什么是json2.json语法规则3.json基础结构4.json基础示例5.JSON和XML比较6. .NET操作JSON 原始方式 通用方式 内置方式 契约方式通过序列化将.net对象转换为JSON字符串使用LINQ to JS...
分类:Web开发   时间:2014-02-26 19:55:57    收藏:0  评论:0  赞:0  阅读:483
WCF图片上传
WCF越来越流行,俺也在用,这是废话。项目中遇到需要图片上传,但是wcf上传会遇到一些异常,调试了N久,找了好多个解决方案才最终解决。代码直接贴上了 /// /// 笔记图片上传 /// /// /// [OperationContract] [WebInvoke(RequestFormat = W...
分类:其他   时间:2014-02-26 19:42:20    收藏:0  评论:0  赞:0  阅读:380
c#判断网络连接状态示例代码
使用c#判断网络连接状态的代码。代码:publicpartialclassForm1:Form{[DllImport("wininet.dll")]privateexternstaticboolgetInterState(outintconn,intval);publicForm1(){Initia...
分类:其他   时间:2014-02-26 19:36:58    收藏:0  评论:0  赞:0  阅读:394
理解lua 语言中的点、冒号与self
转载自:http://blog.csdn.net/wangbin_jxust/article/details/12170233lua编程中,经常遇到函数的定义和调用,有时候用点号调用,有时候用冒号调用,这里简单的说明一下原理。[javascript]view plaincopyprint?girl=...
分类:其他   时间:2014-02-26 19:34:10    收藏:0  评论:0  赞:0  阅读:492
asp.net导出excel示例代码
asp.net导出excel的简单方法。excel的操作,最常用的就是导出和导入。本例使用NPOI实现。代码://////导出Excel////////////publicActionResultExport(FormCollectionfrm){DataTabledts=newDataTable(...
分类:Web开发   时间:2014-02-26 19:31:31    收藏:0  评论:0  赞:0  阅读:380
转 ABAP_ALV_Function方式与OO方式(较为简单、普通的ALV)
ABAP_ALV_Function方式与OO方式(较为简单、普通的ALV)分类:SAP ABAP2013-01-31 09:581511人阅读评论(0)收藏举报目录一、ALV简介1、简介2、ALV_GRID介绍3、其它描述二、开发ALV的基本流程三、ALV相关开发细节1、标准ALV与对象ALV的共同...
分类:其他   时间:2014-02-26 19:28:49    收藏:0  评论:0  赞:0  阅读:2012
leetcode--Single Number II
Given an array of integers, every element appearsthreetimes except for one. Find that single one.Note:Your algorithm should have a linear runtime comp...
分类:其他   时间:2014-02-26 19:26:02    收藏:0  评论:0  赞:0  阅读:436
LeetCode - Jump Game
Jump Game2014.2.26 04:21Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the arra...
分类:其他   时间:2014-02-26 19:23:19    收藏:0  评论:0  赞:0  阅读:479
LeetCode - Jump Game II
Jump Game II2014.2.26 04:35Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the a...
分类:其他   时间:2014-02-26 19:20:40    收藏:0  评论:0  赞:0  阅读:391
hdoj1002--A + B Problem II
Problem DescriptionI have a very simple problem for you. Given two integers A and B, your job is to calculate the Sum of A + B.InputThe first line of ...
分类:其他   时间:2014-02-26 19:17:52    收藏:0  评论:0  赞:0  阅读:406
LeetCode - Interleaving String
Interleaving String2014.2.26 02:48Givens1,s2,s3, find whethers3is formed by the interleaving ofs1ands2.For example,Given:s1="aabcc",s2="dbbca",Whens3=...
分类:其他   时间:2014-02-26 19:15:13    收藏:0  评论:0  赞:0  阅读:284
c++11 function_typetraits备忘
function traits.获取函数或成员函数的返回类型,参数类型,参数长度,类类型。函数参数列表推断基于typelist:http://www.cnblogs.com/flytrace/p/3551414.html先看一个普通函数非const的特化: template struct funct...
分类:编程语言   时间:2014-02-26 19:09:45    收藏:0  评论:0  赞:0  阅读:879
CheckPalindrom int LinkedList
1 public static boolean(ListNode l1,ListNode l2){ 2 boolean res = false; 3 int [] check = {-1}; 4 ListNode mid = getMid(head,check); 5 if( check[0]==1...
分类:其他   时间:2014-02-26 19:07:02    收藏:0  评论:0  赞:0  阅读:447
hdoj1001--Sum Problem
Problem DescriptionHey, welcome to HDOJ(Hangzhou Dianzi University Online Judge).In this problem, your task is to calculate SUM(n) = 1 + 2 + 3 + ... +...
分类:其他   时间:2014-02-26 19:04:22    收藏:0  评论:0  赞:0  阅读:398
Linux下使用tmux
1.tmux介绍tmux是terminal multiplexer的缩写,这里multiplexer怎么翻译才好呢?下面是英文介绍:tmux is a terminal multiplexer:it enables a number of terminals to be created, acces...
分类:其他   时间:2014-02-26 19:01:41    收藏:0  评论:0  赞:0  阅读:394
Add Two number in Linked(forward order)
1 public static ListNode add(ListNode l1, ListNode l2){ 2 3 Stack s1 = new Stack(); 4 Stack s2 = new Stack(); 5 while(l1!=null){ 6 s1.push(l1.val); 7 ...
分类:其他   时间:2014-02-26 18:59:00    收藏:0  评论:0  赞:0  阅读:380
Ubuntu 安装 fcitx 输入法
fcitx 和 ibus一样都是输入法框架.下面介绍ubuntu下安装fcitx输入法.1.先卸载系统中的输入法2.安装. 增加ppa源:sudoadd-apt-repositoryppa:fcitx-team/dailybuild-fcitx-master 刷新软件源: sudo apt-get ...
分类:其他   时间:2014-02-26 18:56:16    收藏:0  评论:0  赞:0  阅读:539
1207条   上一页 1 ... 5 6 7 8 9 ... 61 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!