- 浏览: 539501 次
- 性别:
- 来自: 西安
最新评论
-
duanlongk:
这个问题解决了么?
java.lang.NoClassDefFoundError: org/apache/tuscany -
sotrip:
从上面结果来看,HelloWorld.class是由虚拟机的内 ...
如何实现自己的classloader -
zengsir2008:
哎,不太明白。。。。
OSGI DS 实例 -
ralfsumahe:
...
使用XFire开发Web Service客户端完整入门教程 -
liuqiao_0702:
...
osgi spring hibernate =
文章列表
1、从键盘上读入一个字符
try{
char ch=(char)System.in.read();
}catch(IOException e){
.....
}
屏幕会自动阻塞和挂起。等待用户与之交互
2。
try{
BufferedReader br=new BufferedReader(new InputStreamreader(System.in));
System.out.println("请输入一个数据:");
int i=Integer.parseInt(br.readLine());
...
- 2008-04-08 23:29
- 浏览 1157
- 评论(0)
前提你要把junit.jar加到cp中
然后执行 java junit.swingui.TestRunner
你可以编写许多testCase,如果一次执行多个testCase可以创建testSuite,为了执行testSuite你需要使用testRunner;
(1) testCase(测试用例)
(2) testSuite(测试集合)
(3) testRunner(测试运行器)--执行 testSuite 实际继承BaseTestRunner
Cactus框架就是继承BaseTestRunner,当然你也可以定义自已的testRunner 继承BaseTestRunner.
( ...
- 2008-04-08 17:42
- 浏览 1313
- 评论(0)
今天在研究javamail发信的过程中,出现了一些小问题,现总结如下,以免后来者走些不必要的弯路,先把完整的能够正常运行的代码示例粘贴如下:
发邮件源代码:
package com.hyq.test;
import java.util.Properties;
import javax.mail.*;
import javax.mail.internet.*;
public class MailExample {
public static void main (String args[]) throws Exception {
String host = " ...
- 2008-04-06 11:05
- 浏览 2410
- 评论(0)
启动 Eclipse,选择“Window -> Preferences”菜单,打开首选项对话框。展开 MyEclipse 下的 Application Servers 节点,点击 WebLogic 9,选中右边的 Enable 单选按钮,启用 WebLogic 服务器。配置如下:
①BEA home directory:C:BEA(假定 WebLogic 安装在 ...
- 2008-04-06 10:01
- 浏览 1840
- 评论(0)
Web Service概述
Web Service的定义
W3C组织对其的定义如下,它是一个软件系统,为了支持跨网络的机器间相互操作交互而设计。Web Service服务通常被定义为一组模块化的API,它们可以通过网络进行调用,来执行远程系统的请求服务 ...
- 2008-04-05 17:46
- 浏览 1193
- 评论(0)
XFire是与Axis 2并列的新一代Web Service框架,通过提供简单的API支持Web Service各项标准协议,帮助你方便快速地开发Web Service应用。
相 对于Axis来说,目前XFire相对受欢迎,加上其提供了和Spring集成的支持,在目前的Web Service开源社 ...
- 2008-04-05 17:43
- 浏览 9795
- 评论(2)
Error 404--Not Found
From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
10.4.5 404 Not Found
The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
If the server does not wish to make this information available to t ...
- 2008-04-04 18:05
- 浏览 10096
- 评论(2)