易截截图软件、单文件、免安装、纯绿色、仅160KB

java和。net之间的互操作

.net网站theserverside.com上,有一篇讲.net和java互操作的文章,收集了net和java互操作性的文章精选
[url]http://www.theserverside.net/tt/articles/showarticle.tss?id=InteropGuide[/url]
In the heterogeneous world of enterprise computing, interoperability is no longer a luxury but a necessity. The multiple tier architecture of modern enterprises coupled with multiple development tools can lead to multiple headaches for developers. So what's a poor developer to do? Fortunately (some would say unfortunately), there are many ways to tackle this problem.
The resources I've assembled below should provide you with a broad overview of some of the techniques being used to bridge the worlds of .NET and Java technology. We'd love to hear about the interoperability issues you've encountered and how you went about solving them.
In the heterogeneous world of enterprise computing, interoperability is no longer a luxury but a necessity. The multiple tier architecture of modern enterprises coupled with multiple development tools can lead to multiple headaches for developers. So what's a poor developer to do? Fortunately (some would say unfortunately), there are many ways to tackle this problem.
The resources I've assembled below should provide you with a broad overview of some of the techniques being used to bridge the worlds of .NET and Java technology. We'd love to hear about the interoperability issues you've encountered and how you went about solving them.
 
Introduction
Interoperability between Java EE technology and .NET applications
[url]http://developers.sun.com/learning/javaoneonline/2006/webtier/TS-4611.pdf[/url]
Dr. Dobb's "Interoperability and Integration" poster (PDF)
[url]http://msdn.microsoft.com/vstudio/java/interop/interop.poster.pdf[/url]
Webcast: Application interoperability with Microsoft .NET and J2EE
[url]http://msevents.microsoft.com/cui/WebCastEventDetails.aspx?EventID=1032265915[/url]
Top ten tips for Web services interoperability
[url]http://b


相关文档:

java计算程序运行时长

long startTime=System.currentTimeMillis(); //获取开始时间 
doSomeThing(); //测试的代码段
long endTime=System.currentTimeMillis(); //获取结束时间
System.out.println("程序运行时间: "+(end-start)+"ms"); ......

java性能的优化(三)

    关于线程的操作,要注意如下几个方面。
    (1) 防止过多的同步
   
如上所示,不必要的同步常常会造成程序性能的下降。因此,如果程序是单线程,则一定不要使用同步。
    (2)
同步方法而不要同步整个代码段
   对某个方法或函数进行同步比对 ......

Java调用SQL Server的存储过程详解

1使用不带参数的存储过程
  使用 JDBC 驱动程序调用不带参数的存储过程时,必须使用 call SQL 转义序列。不带参数的 call 转义序列的语法如下所示:
  
以下是引用片段:
{call procedure-name}
  作为实例,在 SQL Server 2005 AdventureWorks 示例数据库中创建以下存储过程:
  
以下是引用片段: ......

java php DES 加密解密

import java.io.IOException;
import java.security.SecureRandom;
import javax.crypto.Cipher;
import javax.crypto.SecretKey;
import javax.crypto.SecretKeyFactory;
import javax.crypto.spec.DESKeySpec;
import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;
public class DES {
private byte ......

Map、Set、Iterator迭代详解与Java平台的集合框架

Map、Set、Iterator迭代详解
Map接口定义了四种类型的方法,每个Map都包含这些方法。
equals(Object o)比较指定对象与此Map的等价性。
hashCode()返回此Map的哈希码。
Map定义了几个用于插放和删除元素的变换方法。
remove(Object key) 从Map中删除键和关联的值。
put(object key,Object value) 将指定值与指定键相关 ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号