- 浏览: 74640 次
- 性别:
- 来自: 杭州
最新评论
文章列表
Action:
#include "lrs.h"
Action()
{
lrs_create_socket("socket0","TCP","RemoteHost=127.0.0.1:1212", LrsLastArg);
lrs_send("socket0", "buf1", LrsLastArg);
lrs_receive("socket0", "buf2", LrsLastArg);
...
1. 下载破解文件lm70.dll和mlr5lprg.dll
lm70.dll文件,覆盖x:\Program Files\Mercury\LoadRunner\bin下文件即可。
mlr5lprg.dll文件,分别要覆盖以下两个文件夹:
x:\Program Files\Mercury\LoadRunner\bin
x:\Program Files\Mercury\LoadRunner\bin\tulip\bin
2. 运行清除注册表工具见附件
3. 打开license管理器,点击添加new license,将老licens ...
LoadRunner中监控AIX服务器性能,需要打开AIX服务器的rstatd守护进程
1. telnet用root用户登录AIX服务器。
2. vi /etc/inetd.conf
3. /rstatd #找到rstatd
4. x #删除前面的注释符‘#’
5. 重启服务refresh -s inetd
6. 检查是否已经启动rpcinfo -p #看到rstatd即可
下载python安装包
python-x.x.x-x.aix5.x.ppc.rpm
下载相关lib安装包
gdbm-x.x.x-x.aix5.x.ppc.rpm
expat-x.x.x-x.aix5.x.ppc.rpm
db-x.x.x-x.aix5.x.ppc.rpm
readline-x.x.x-x.aix5.x.ppc.rpm
“rpm -ivh 包名” 来安装rpm包
python安装依赖相关lib包,所以先安装相关lib包
String endpoint = "http://127.0.0.1:8080/soap/services/Hello";
String namespace = "http://crea.com";
String method = "forword";
org.apache.axis.client.Service server = new org.apache.axis.client.Service();
org.apache.axis.client.Call call = (org.apache.axis.client. ...
InputStream is = new FileInputStream("1.jpg");
// 通过JPEG图象流创建JPEG数据流解码器
JPEGImageDecoder decoder = JPEGCodec.createJPEGDecoder(is);
// 解码当前JPEG数据流,返回BufferedImage对象
BufferedImage buffImg = decoder.decodeAsBufferedImage();
// 得到画笔对象
Graphics g = buffImg.getGraphics();
// ...
Java线程池相关信息整理:
关于应用服务器的添加线程池是多余的,主流应用服务器的请求并发控制都有自己的配置。
在嵌入式设备的软体设计上可以添加线程池。(独立通讯接口、Mina集成)
java.util.concurrent中的执行器Executor来管理Thread对象
ExecutorService exec = Executors.newCacheThreadPool();
ExecutorService exec = Executors.newFixedThreadPool(5);
ExecutorService exec = Executors.newSi ...
情況:
日常使用excel中會遇到根據A列的值來分類求和B列的值
舉例:
1
A B
2
開發者
工作量
3
andy 2
4
華仔
1
5
andy 8
6
華仔
3
7
andy 4
8
andy 5
9
華仔
16
華仔的總工作量是:{=SUM(IF(A2:A9="華仔",B2:B9))}
注:這是組合函數,編輯完畢后按ctrl+shift+enter開啟
Request获取发布应用的资源地址
- 博客分类:
- TOMCAT
request.getRequestURI
request.getRequestURL
request.getContextPath
request.getServletPath(常用:获取请求全文)
webservices中需要将声明为byte[]的类型进行base64编码传输
在传输大量业务数据的String和图片时可以采用,而且避免明文传输带来的风险
public static String encodeBASE64(String s) {
if (s == null)
return null;
return (new sun.misc.BASE64Encoder()).encode(s.getBytes());
}
public static String decodeBASE64(String s) {
if (s == null)
retu ...
String endPoint = "http://127.0.0.1:8080/cis/services/Hinge";
String qname = "http://crea.com";
String method = "forward";
String param = "gogo";
Service server = new Service();
Call call = (Call) server.createCall();
call.setTargetEndpointAddress(new URL ...
两种常用的流代码
各个流的特殊API整理待续。。。
File file = new File("");
PrintWriter out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(file.getOutputStream())), true);
out.println("haha");
out.println("heihei");
out.close();
BufferedReader in = new BufferedRead ...
没有真正意义上使用过UML,偶然看到IBM开发社区上的一篇文章思路很顺。就想着整理到博客中来。
原文地址:http://www.ibm.com/developerworks/cn/rational/10/using-stakeholder-collaboration-strategy-with-requirements-composer-part1/
以下是根据原文 ...
HTTP返回response头信息中
带有Transfer-Encoding = chunked表示使用chunked封包传输
Chunked格式:
0000-000F 48 54 54 50 2f 31 2e 31 20 32 30 30 20 4f 4b 0d HTTP/1.1 200 OK.
0010-001F 0a 43 6f 6e 74 65 6e 74 2d 54 79 70 65 3a 20 74 .Content-Type: t
0020-002F 65 78 74 2f 70 6c 61 69 6e 0d 0a 54 72 61 6e ...
public class ChangeIp extends HttpServlet {
protected void service(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException {
Process proc = Runtime.getRuntime().exec("/bin/bash", null, new File("/bin"));
PrintWriter out = new PrintWriter(ne ...