NC -v IP地址 端口<c:\1.txt具体实例:NC -v 211.157.106.78
8080 <c:\1.txt打开记事本,写一段批处理让nc自动传包 格式:gonc -v 211.157.106.78
8080<c:1.txtgoto go将文件保存为批处理1.bat
分类:
移动开发 时间:
2014-07-22 23:00:53
阅读次数:
343
package 动态连接数据库;import
java.lang.reflect.InvocationHandler;import java.lang.reflect.Method;import
java.lang.reflect.Proxy;import java.sql.Connection;i...
分类:
数据库 时间:
2014-05-01 22:30:11
阅读次数:
536
本实例:输入一个32位二进制的数,每隔八位分开将其转换为十进制以IP格式输出。 1
#include 2 /* 3 以IP地址形式输出 4 */ 5 int main(void) 6 { 7 int i; 8 int ip[4]={0}; 9
char a[33];...
分类:
其他好文 时间:
2014-05-01 22:19:07
阅读次数:
754
from :http://www.oschina.net/news/51084/gcc-4-9-0
GCC 4.9.0 发布,此版本是个主要版本更新,包括了 GCC 4.8.x 系列和之前的 GCC 版本都没有的新特性,新特性非常之多。下载地址:http://gcc.gnu.org/mirrors.html
警告
移除 mudflap 运行时检查器,mudfl...
分类:
编程语言 时间:
2014-05-01 22:01:00
阅读次数:
732
1, insert into test select * from
test;(造测试数据)2, create table b as select * from a;
(创建表结构一样的空表,数据可同上插入数据)3,linux系统下让sqlplus支持历史命令回调在linux中实现上述功能,需要.....
分类:
数据库 时间:
2014-05-01 21:33:20
阅读次数:
447
activating vt-x from biosIf you have HP
EliteBook 8770w do:Shutdown your mobile workstation.Push startup buttonpush ESC
keypush F10 to open BIOS setup...
分类:
其他好文 时间:
2014-05-01 21:08:36
阅读次数:
512
Problem DescriptionIgnatius has just come back
school from the 30th ACM/ICPC. Now he has a lot of homework to do. Every teacher
gives him a deadline o...
分类:
其他好文 时间:
2014-05-01 20:49:40
阅读次数:
563
没有想通为什么这个简单的问题竟然不是那么简单,太小看它了,以下是两个别人的很不错的solution:Solution1:
1 public class Solution { 2 public int removeDuplicates(int[] A) { 3 // Start...
分类:
其他好文 时间:
2014-05-01 20:19:26
阅读次数:
384
Keyboard inputPython provides a build-in
function called raw_input (in version 2.x) that gets input from the keyboard. In
Python 3.x we use input(). W...
分类:
其他好文 时间:
2014-05-01 19:23:26
阅读次数:
392
连接就是将两个表按照某个公共字段来拼成一个大表。
左连接就是在做连接是以左边这个表为标准,来遍历右边的表。
例子:
用户访问记录:
问题:查出看了湖南卫视但没有看北京卫视的用户信息
逻辑:先通过左连接将看了湖南卫视和北京卫视的查出来,然后再将看了湖南卫视但不在刚才查出的结果中的用户查出来。
SELECT * FROM test_visit WHERE channel='...
分类:
数据库 时间:
2014-04-30 22:31:39
阅读次数:
401