posts - 15,comments - 29,trackbacks - 0
Axis框架来自 Apache 开放源代码组织,它是基于JAVA语言的最新的 SOAP 规范(SOAP 1.2)和 SOAP with Attachments 规范(来自 Apache Group )的开放源代码实现。下面是它的核心引擎的体系结构图:



下面以 http://www.webxml.com.cn/webservices/DomesticAirline.asmx?Wsdl  航班查询服务为例来分析开发客户端的步骤。
1.首先从http://ws.apache.org/axis/index.html上下载axis的程序包。

2.运行cmd,进入下载包解压后的目录,运行   Java -Djava.ext.dirs=lib org.apache.axis.wsdl.WSDL2Java -p client  http://www.webxml.com.cn/webservices/DomesticAirline.asmx?Wsdl  
(其中-p是生成代码的包名,根据需要设置)
 然后把生成的代码拷贝到项目里面。

3.拷贝axis里面的包到工程里面。

4.客户端代码。

public List<TicketInfo> getDomesticAirlinesTime(String startCity, String lastCity, String theDate) throws RemoteException, ServiceException {
        DomesticAirline service 
= new DomesticAirlineLocator();
        GetDomesticAirlinesTimeResponseGetDomesticAirlinesTimeResult airlines;

        airlines 
= service.getDomesticAirlineSoap12().getDomesticAirlinesTime(startCity, lastCity,theDate, null);
    
        MessageElement[] FOCElement 
= airlines.get_any();
        List FOCElementHead 
= FOCElement[0].getChildren();//消息头,DataSet对象    
        List FOCElementBody = FOCElement[1].getChildren();//消息体信息,DataSet对象  

        String nn 
= FOCElementBody.get(0).toString();//消息体的字符串形式     
        
        

        SAXReader reader 
= new SAXReader();
        Document document 
= null;

        
try {
            document 
= document = DocumentHelper.parseText(nn);
        }
 catch (Exception e) {
            
// TODO Auto-generated catch block
            System.out.println(e.toString());
        }

        
        
        Element root 
= (Element)document.getRootElement(); // 得到根元素    

        List
<TicketInfo> ticketInfoList = new ArrayList<TicketInfo>();
        
for (Object e : root.elements())
        
{
            TicketInfo ticketInfo 
= new TicketInfo();
            Element element 
= (Element) e;
            ticketInfo.setAirlineCompany(element.elementText(
"Company"));
            ticketInfo.setFlightNumber(element.elementText(
"AirlineCode"));
            ticketInfo.setStartAirport(element.elementText(
"StartDrome"));
            ticketInfo.setEndAirport(element.elementText(
"ArriveDrome"));
            ticketInfo.setAirCraftType(element.elementText(
"Mode"));
            SimpleDateFormat  myFmt
=new   SimpleDateFormat("HH:mm");     
            
try {
                ticketInfo.setStartTime(myFmt.parse(element.elementText(
"StartTime")));
                ticketInfo.setEndTime(myFmt.parse(element.elementText(
"ArriveTime")));
            }
 catch (ParseException e1) {
                
// TODO Auto-generated catch block
                e1.printStackTrace();
            }

            
            ticketInfoList.add(ticketInfo);
        }

        
        
return ticketInfoList;
    }

    
}

本来客户端代码应该是比较简单的,但是这个例子的webservice服务端是用.net写的,查询后返回DataSet类型,java没有对应的类型,所以只能把返回后的结果用xml来解析,然后在放入java的数据对象里面。
posted @ 2008-12-04 10:04 流腥鱼 阅读(2857) | 评论 (0)编辑 收藏
导出导入之前的准备 

 

1.连接数据库 conn system/password@//192.168.1.100:1521/dbcms

 

2.创建用户 create user newuser identified by password;


3.授权 GRANT CREATE USER,DROP USER,ALTER USER ,CREATE ANY VIEW ,DROP ANY VIEW,EXP_FULL_DATABASE,IMP_FULL_DATABASE,DBA,CONNECT,RESOURCE,CREATE SESSION to newuser  


导出命令,任选其一:
 

 1 将数据库TEST完全导出,用户名system 密码manager 导出到D:\daochu.dmp中

   exp system/manager@TEST file=d:\daochu.dmp full=y

 2 将数据库中system用户与sys用户的表导出

   exp system/manager@TEST file=d:\daochu.dmp owner=(system,sys)

 3 将数据库中的表inner_notify、notify_staff_relat导出

    exp aichannel/aichannel@TESTDB2 file= d:\data\newsmgnt.dmp tables=(inner_notify,notify_staff_relat) 

 4 将数据库中的表table1中的字段filed1以"00"打头的数据导出

   exp system/manager@TEST file=d:\daochu.dmp tables=(table1) query=\" where filed1 like '00%'\"



导入命令,任选其一:
 

1 将D:\daochu.dmp 中的数据导入 TEST数据库中。

   imp system/manager@TEST  file=d:\daochu.dmp

   imp aichannel/aichannel@HUST full=y  file=file= d:\data\newsmgnt.dmp ignore=y

   上面可能有点问题,因为有的表已经存在,然后它就报错,对该表就不进行导入。

   在后面加上 ignore=y 就可以了。

 2 将d:\daochu.dmp中的表table1 导入

 imp system/manager@TEST  file=d:\daochu.dmp  tables=(table1)


 

posted @ 2008-11-18 14:30 流腥鱼 阅读(264) | 评论 (0)编辑 收藏
     摘要:   l         FreeMarker是一个模板引擎,一个基于模板生成文本输出的通用工具,使用纯Java编写 l         FreeMarker被设计用来生成HTML Web页面,特别是基于MVC模式的应用程序 ...  阅读全文
posted @ 2008-09-24 15:17 流腥鱼 阅读(633) | 评论 (0)编辑 收藏

在Firefox2中某些情况下输入框虽然可以输入,但在获取焦点时没有文本输入光标的显示,这个是非常恶心的bug,非常容易让表单使用者有一种不能输入的错觉,即使后来尝试知道可以输入,但也无法判断光标定位在哪儿。虽然庆幸的是Firefox3中解决了这个bug,但Firefox3还在beta阶段,取代Firefox2还是需要一些时间的,下面就来仔细说一下这个问题:

一、样式为{position:absolute;}的容器中的表单输入框在样式为类似{overflow:auto;}的容器区域中失去光标

可以通过 例一到例六 来了解最常见的情况。

如果想整个body都出现失去光标,可以设置html和body两个容器,请看 示例 。包括举例的overflow:auto在内能引起该Bug的overflow属性共有:

overflow:auto
overflow-x:auto;
overflow-y:auto;
overflow:scroll;
overflow-x:scroll;
overflow-y:scroll;
overflow-x:hidden;
overflow-y:hidden;

除了避免使用overflow属性的其他解决方案:

  1. 利用overflow:hidden代替产生bug的oveflow属性
  2. 在具有上述overflow属性的容器中加入position:relative,请看 实例
  3. 在positon:absolute的容器上加入同样的oveflow属性,同时注意在页面出现的顺序,见 例四
  4. 为使用能产生bug的oveflow属性的容器选择合适的标签,比如fieldset,见 例六

二、样式为{position:absolute;}的容器中的表单输入框在iframe容器区域中失去光标

可以通过 例七 来了解这个情况。IE6中为了解决下拉列表级别过高问题,往往需要用iframe来遮盖它,偶尔疏忽忘记做浏览器限定就有可能导致上面的问题。

现在看来Firefox2对iframe的处理bug还真不少,比如以前就发现了Firefox返回时Iframe的显示Bug。

posted @ 2008-06-25 16:34 流腥鱼 阅读(304) | 评论 (1)编辑 收藏

 JS 对象介绍 1.document.formName.item("itemName") 问题
说明:IE下,可以使用document.formName.item("itemName")或document.formName.elements["elementName"];Firefox下,只能使用document.formName.elements["elementName"].
解决方法:统一使用document.formName.elements["elementName"].

2.集合类对象问题
说明:IE下,可以使用()或[]获取集合类对象;Firefox下,只能使用[]获取集合类对象.
解决方法:统一使用[]获取集合类对象.

3.自定义属性问题
说明:IE下,可以使用获取常规属性的方法来获取自定义属性,也可以使用getAttribute()获取自定义属性;Firefox下,只能使用getAttribute()获取自定义属性.
解决方法:统一通过getAttribute()获取自定义属性.

4.eval("idName")问题
说明:IE下,,可以使用eval("idName")或getElementById("idName")来取得id为idName的HTML对象;Firefox下只能使用getElementById("idName")来取得id为idName的HTML对象.
解决方法:统一用getElementById("idName")来取得id为idName的HTML对象.

5.变量名与某HTML对象ID相同的问题
说明:IE下,HTML对象的ID可以作为document的下属对象变量名直接使用;Firefox下则不能.Firefox下,可以使用与HTML对象ID相同的变量名;IE下则不能。
解决方法:使用document.getElementById("idName")代替document.idName.最好不要取HTML对象ID相同的变量名,以减少错误;在声明变量时,一律加上var,以避免歧义.

7.input.type属性问题
说明:IE下input.type属性为只读;但是Firefox下input.type属性为读写.

9.event.x与event.y问题
说明:IE下,even对象有x,y属性,但是没有pageX,pageY属性;Firefox下,even对象有pageX,pageY属性,但是没有x,y属性.
解决方法:使用mX(mX = event.x ? event.x : event.pageX;)来代替IE下的event.x或者Firefox下的event.pageX.

10.event.srcElement问题
说明:IE下,event对象有srcElement属性,但是没有target属性;Firefox下,event对象有target属性,但是没有srcElement属性.
解决方法:使用obj(obj = event.srcElement ? event.srcElement : event.target;)来代替IE下的event.srcElement或者Firefox下的event.target.

13.frame问题
以下面的frame为例:
<frame src="xxx.html" id="frameId" name="frameName" />

(1)访问frame对象:
IE:使用window.frameId或者window.frameName来访问这个frame对象.
Firefox:只能使用window.frameName来访问这个frame对象.
另外,在IE和Firefox中都可以使用window.document.getElementById("frameId")来访问这个frame对象.

(2)切换frame内容:
在IE和Firefox中都可以使用window.document.getElementById("testFrame").src = "xxx.html"或window.frameName.location = "xxx.html"来切换frame的内容.

如果需要将frame中的参数传回父窗口,可以在frme中使用parent来访问父窗口。例如:parent.document.form1.filename.value="Aqing";

14.body问题
Firefox的body在body标签没有被浏览器完全读入之前就存在;而IE的body则必须在body标签被浏览器完全读入之后才存在.

例如:
Firefox:
<body>
<script type="text/javascript">
document.body.onclick = function(evt){
evt = evt || window.event;
alert(evt);
}
</script>
</body>
IE&Firefox:
<body>
</body>
<script type="text/javascript">
document.body.onclick = function(evt){
evt = evt || window.event;
alert(evt);
} </script>

15. 事件委托方法
IE:document.body.onload = inject; //Function inject()在这之前已被实现

Firefox:document.body.onload = inject();

有人说标准是:
document.body.onload=new Function('inject()');

16. firefox与IE(parentElement)的父元素的区别
IE:obj.parentElement
firefox:obj.parentNode

解决方法: 因为firefox与IE都支持DOM,因此使用obj.parentNode是不错选择.

17.innerText在IE中能正常工作,但是innerText在FireFox中却不行.
解决方法:
if(navigator.appName.indexOf("Explorer") > -1){

    document.getElementById('element').innerText = "my text";

} else{

    document.getElementById('element').textContent = "my text";

}

18. FireFox中类似 obj.style.height = imgObj.height 的语句无效
解决方法:
obj.style.height = imgObj.height + 'px';

19. ie,firefox以及其它浏览器对于 table 标签的操作都各不相同,在ie中不允许对table和tr的innerHTML赋值,使用js增加一个tr时,使用appendChile方法也不管用。
解决方法:
//向table追加一个空行:
var row = otable.insertRow(-1);
var cell = document.createElement("td");
cell.innerHTML = " ";
cell.className = "XXXX";
row.appendChild(cell);

20. padding 问题
padding 5px 4px 3px 1px FireFox无法解释简写,

必须改成 padding-top:5px; padding-right:4px; padding-bottom:3px; padding-left:1px;

21. 消除ul、ol等列表的缩进时
样式应写成:list-style:none;margin:0px;padding:0px;

其中margin属性对IE有效,padding属性对FireFox有效

22. CSS透明
IE:filter:progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=60)。

FF:opacity:0.6。

23. CSS圆角
IE:不支持圆角。

FF: -moz-border-radius:4px,或者-moz-border-radius-topleft:4px;-moz-border- radius-topright:4px;-moz-border-radius-bottomleft:4px;-moz-border-radius- bottomright:4px;。

24. CSS双线凹凸边框
IE:border:2px outset;。

FF: -moz-border-top-colors: #d4d0c8 white;-moz-border-left-colors: #d4d0c8 white;-moz-border-right-colors:#404040 #808080;-moz-border-bottom-colors:#404040 #808080;

25.ie支持document.all 而firefox 不支持
改用下面三个tag的其中一个来代替document.all
getElementsByTagName("tagName") 可以得到得到所有标签元素的集合
getElementById("idName")          可以按id得到某一元素
getElementsByName("Name")            可以得到按name属性得到某一元素

26、firefox 中使用innerHTML 的方法
<div id="online"></div>
document.all.online.innerHTML; //这种方法在IE中可以使用,但不是标准方法
document.getElementById("online").innerHTML; //这样firefox就能使用innerHTML了

27、eval()与window.execScript()执行脚本
IE、firerox均支持eval(),firefox不支持window.execScript()

解决:统一使用eval()

28、对事件处理函数的重写
解决:(例):如对document的onclick()重写,统一使用document.onclick = function(){…}

 

posted @ 2008-06-20 15:55 流腥鱼 阅读(651) | 评论 (0)编辑 收藏

        现在的系统为了得到更好的用户体验,都加入了ajax的特效,只要用到了ajax的代码,就会引来一大堆js代码,这些代码其实也挺占用带宽的,为了使网页加载得更快,决定在项目中才用网上流行的js压缩器来压缩代码。压缩后的代码基本可以抽掉40%左右的脂肪。
 
        找到几个压缩器,发现很多压缩器压缩后的js代码都出现这样或那样的问题

ESC 1.14   http://www.saltstorm.net/depo/esc/?pod=js   压缩后有些中文会出现问号(我的js代码是用utf-8格式)
jsmin http://www.crockford.com/javascript/jsmin.html   压缩后有些中文会出现问号
dean edwards的packer http://dean.edwards.name/packer/ 压缩后的js代码会出现部分分号或大括号丢失,导致语法错误


最后找到了yuicompressor-2.3.4 http://developer.yahoo.com/yui/compressor/ 感觉很好用,压缩后无损代码,而且连css也可以压缩,压缩的时候很多参数可以设置,可以制定js代码的编码格式等,java运行,本人写了一个bat批处理遍历制定文件夹里面的所有js和css文件进行压缩。

项目中用到网上流行的ext2 js库,所以项目中有很多js代码,于是写的bat遍历文件压缩代码

(dir %1 /aa //s  | findstr //c:"js">tmp.txt
for /%%i in (tmp.txt) do java -jar yuicompressor-2.3.4.jar --type js --charset utf-8 -%%i.tmp %%i  & copy %%i".tmp" %%& del %%i".tmp"


(dir 
%1 /aa //s  | findstr //c:"css">tmp.txt
for /%%i in (tmp.txt) do java -jar yuicompressor-2.3.4.jar --type css --charset utf-8 -%%i.tmp %%i  & copy %%i".tmp" %%& del %%i".tmp"


保存为  jscompressor.bat 运行的时候在输入 jscompressor <path>  (<path>是我们指定的路径) 就可以批量进行压缩,压缩后替换压缩前的代码。



下面是一些参数的说明。

==============================================================================
YUI Compressor
==============================================================================

NAME

  YUI Compressor 
- The Yahoo! JavaScript and CSS Compressor

SYNOPSIS

  Usage: java 
-jar yuicompressor-x.y.z.jar [options] [input file]

  Global Options
    
-h, --help                Displays this information
    
--type <js|css>           Specifies the type of the input file
    
--charset <charset>       Read the input file using <charset>
    
--line-break <column>     Insert a line break after the specified column number
    
-v, --verbose             Display informational messages and warnings
    
-<file>                 Place the output into <file>. Defaults to stdout.

  JavaScript Options
    
--nomunge                 Minify only, do not obfuscate
    
--preserve-semi           Preserve all semicolons
    
--disable-optimizations   Disable all micro optimizations

DESCRIPTION

  The YUI Compressor is a JavaScript compressor which, in addition to removing
  comments and white
-spaces, obfuscates local variables using the smallest
  possible variable name. This obfuscation is safe, even when using constructs
  such as 
'eval' or 'with' (although the compression is not optimal is those
  cases) Compared to jsmin, the average savings is around 
20%.

  The YUI Compressor is also able to safely compress CSS files. The decision
  on which compressor is being used is made on the file extension (js or css)

GLOBAL OPTIONS

  
-h, --help
      Prints help on how to use the YUI Compressor

  
--line-break
      Some source control tools don
't like files containing lines longer than,
      say 8000 characters. The linebreak option is used in that case to split
      
long lines after a specific column. It can also be used to make the code
      more readable, easier to debug (especially with the MS Script Debugger)
      Specify 
0 to get a line break after each semi-colon in JavaScript, and
      after each rule in CSS.

  
--type js|css
      The type of compressor (JavaScript or CSS) is chosen based on the
      extension of the input file name (.js or .css) This option is required
      
if no input file has been specified. Otherwise, this option is only
      required 
if the input file extension is neither 'js' nor 'css'.

  
--charset character-set
      If a supported character set is specified, the YUI Compressor will use it
      to read the input file. Otherwise, it will assume that the platform
's
      default character set is being used. The output file is encoded using
      the same character set.

  
-o outfile
      Place output in file outfile. If not specified, the YUI Compressor will
      
default to the standard output, which you can redirect to a file.

  
-v, --verbose
      Display informational messages and warnings.

JAVASCRIPT ONLY OPTIONS

  
--nomunge
      Minify only. Do not obfuscate local symbols.

  
--preserve-semi
      Preserve unnecessary semicolons (such as right before a 
'}') This option
      is useful when compressed code has to be run through JSLint (which is the
      
case of YUI for example)

  
--disable-optimizations
      Disable all the built
-in micro optimizations.





 

posted @ 2008-06-19 00:45 流腥鱼 阅读(1979) | 评论 (4)编辑 收藏
仅列出标题
共2页: 上一页 1 2