摘要:
这是一个android端操控服务器的例子 就是发送简单指令到服务器 然后服务器响应什么的...当然这里是未完成的 只是简单展示一下大致思路首先连接建立起来后 服务端给客户端一条信息 告诉服务已经建立 然后客户端可以发送指令到服务端 服务端在将处理的结果返回给客户端 没有使用到线程 因此必须是 客户端一句话 服务端一句话 这样交替进行服务端using System;using System.Text;using System.IO;using System.Net;using System.Net.Sockets;namespace SocketOne{ class MyServer ... 阅读全文
摘要:
参考http://www.cnblogs.com/cdtarena/p/3184313.html这里以C#作为服务端 其实不论C#是服务端还是客户端都不是主要问题毕竟不论客户端还是服务端 都包括了发送和接收两个部分C#using System;using System.Text;using System.IO;using System.Net;using System.Net.Sockets;/*转载http://www.cnblogs.com/jason_yjau/archive/2009/06/24/1510580.html*/namespace SocketOne{ class M... 阅读全文
摘要:
由程序逻辑可以看到 这是一个 客户端和服务端一对一聊天的程序 首先由服务端说第一句话然后对话才开始且只能客户端一行话 服务端再一行话 这样往复进行 客户端若想不等服务端回应继续说话是不行的服务端package rakus;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStream;import java.io.InputStreamReader;import java.io.OutputStream;import java.io.PrintWriter;import java.net.S 阅读全文
摘要:
这是一个书签形式的脚本 有全选 批量删除什么的 亚马逊本身的删除太麻烦了网上转的 原帖在这里http://tieba.baidu.com/p/2249582757改进版本http://tieba.baidu.com/p/2252542752操作方法 首先点击书签 (这个书签的地址就是那长长的js代码)然后每个项目前面有复选框 再次点击书签 就可以执行删除javascript:(function(){ a=document.getElementsByClassName('rowBodyCollapsed');b=document.getElementsByName('ch 阅读全文
摘要:
刚安装好时 密码是空的 所以不用输入直接回车就能进入修改密码参考http://www.cnblogs.com/hooray/archive/2011/07/23/2114792.htmlhttp://hi.baidu.com/lwbqqyumidi/item/0442570f05f32636f2eafc5b首先进入mysql控制台 如果你是wampServer集成的话 有个很简单的办法点击wamp图标 然后MySQL---MySQLConsole即可如果是通过win中的控制台进入 则需要mysql -u root mysql(这个win的控制台得在mysql的bin目录下打开或者打开cmd后进 阅读全文
摘要:
Date.h#ifndef DATE_H#define DATE_Hclass Date{public: Date(int d=0,int m=0,int y=0);//自定义了构造方法 会覆盖掉默认的无参构造方法 void setDay(int d); void print();private: int d; int m; int y;};#endifDate.cpp#include "stdafx.h"#include #include "Date.h"using namespace std;Date::Date(int d, int m, int 阅读全文
摘要:
#include "stdafx.h"#include //不要遗漏 否则不能使用coutusing namespace std;class Time{public : Time();// 自定义了构造函数 那么必须默认写一个空的构造函数 Time(int h,int m ,int s); void setTime(int hour,int min,int sec); void printMilitary(); void printStandard();private: int hour; int min; int sec;};Time:... 阅读全文
摘要:
#include using namespace std;int main(){ int number=5; void cubeByPoint(int *);//指针传参声明 void cubeByRefer(int &x); cubeByPoint(&number);//传地址过去 cout<<number<<endl; int num=7; cout<<"num adderss "<<&num<<endl; cubeByRefer(num);}void cubeByPoint(int* 阅读全文
摘要:
#include using namespace std;int main(){int a=7;int* ptr;ptr=&a;cout<<&a<<endl;//如果不用using namespace std; cout会不识别cout<<"ptr is "<<ptr<<endl;cout<<"&ptr is "<<&ptr<<endl;//ptr指针的地址cout<<"*&ptr is " 阅读全文
摘要:
// WinThreadTest.cpp : Defines the entry point for the application.//#include "stdafx.h"#include "WinThreadTest.h"#include #define MAX_LOADSTRING 100// Global Variables:HINSTANCE hInst; // current instanceTCHAR szTitle[MAX_LOADSTRING]; // The title b... 阅读全文