private static void AddIndustryTypes(sectorCode[] result) { var industryTypes = (from t in result ...
分类:
其他好文 时间:
2014-07-03 07:07:52
阅读次数:
248
Tue Jul 1 17:52:22 2014 [ReM][D]: Req:3472 UID:0 AclInfo invokedTue Jul 1 17:52:22 2014 [ReM][D]: Req:3472 UID:0 AclInfo result SUCCESS, "0..."Tue J.....
分类:
其他好文 时间:
2014-07-02 23:36:13
阅读次数:
290
//String 是用来显示提示内容protected void dialog(String result) { AlertDialog.Builder builder = new Builder(MainActivity.this); builder.setMessa...
分类:
其他好文 时间:
2014-07-02 18:50:37
阅读次数:
154
@RequestMapping(value = "/update.action", method = RequestMethod.POST) public @ResponseBody Result update(HttpServletRequest request,@RequestParam(val...
分类:
其他好文 时间:
2014-07-02 17:45:14
阅读次数:
162
快速的ping网络中存活的主机,该脚本有并行执行的特点,能够在后台快速完成网络主机的检查。#!/bin/bash
#
#
foripin192.168.1.{1..255};
do
(
ping$ip-c2&>/dev/null;
if[$?-eq0];
then
echo$ipisalived
fi
)&
done
wait如果要出事255个地址,ping每一个IP的主机都..
分类:
其他好文 时间:
2014-07-02 15:59:11
阅读次数:
286
1 #include 2 3 LRESULT CALLBACK MyWndProc( HWND hwnd, // handle to window 4 UINT uMsg, // message identifier 5 WPARAM wParam, // fi...
javascript中的所有函数的参数传递都是按照值传递的,做了下面测试:
function addTen(num){
num +=10;
return num;
}
var count = 20;
var result = addTen(count);
alert(cont); //20
alert(result); //30 好吧,上面只是做了基本类型的传递,再做个引用类型...
分类:
编程语言 时间:
2014-07-02 09:47:04
阅读次数:
144
html:<inputid="Fi_Fp"runat="server"name="Fi_Fp"type="file"/>.cs:usingSystem.IO;usingSystem.Text.RegularExpressions;usingSystem.Windows.Forms;if(Fi_Fp.PostedFile.ContentLength>0)//上传了新图书{b._upfile=uploadFile(Fi_Fp);if(isTxt==true){b._txtlist=r..
分类:
其他好文 时间:
2014-07-02 06:47:27
阅读次数:
204
1.首先定义一份协议。
protocol HttpToolProrocol{
//1.代理方法,将服务器返回的字典传递给调用者
func didRecieveResults(result:NSDictionary)
}
2.定义一个代理属性 //2.声明代理属性
var delegate : HttpToolProrocol?
3....
分类:
其他好文 时间:
2014-07-01 16:03:40
阅读次数:
629
sd5:0:0:0:[sdd]Unhandledsensecodesd5:0:0:0:[sdd]Result:hostbyte=DID_OKdriverbyte=DRIVER_SENSEsd5:0:0:0:[sdd]SenseKey:MediumError[current][descriptor]Descriptorsensedatawithsensedescriptors(inhex):720311040000000c000a8000000000004c69a958sd5:0:0:0:[sdd]Add.Se..
分类:
其他好文 时间:
2014-07-01 09:55:07
阅读次数:
856