转:6款Java转C#的最佳工
原文来自于:http://designzum.com/2014/03/27/best-tools-to-convert-java-to-c-source-code/
ava is the class based, object oriented computer programming language which was released in 1995 by Sun Microsystems. It is the most popular programming language used by almost 9 million developers, especially for client-server web applications. Java applications are compiled to bytecodes which runs on the JVM (Java Virtual Machine) regardless of computer architecture. It is developed based on the principal that write once and run anywhere and this is the reason for its popularity. While the C# (pronounced as see sharp) is a multi paradigm programming language.
C# is intended to be simple, modern, object oriented programming language which was developed by Microsoft for .NET framework. A web application or project can be built on any platform depending on the requirements and use of the application. But there may be a lot of situations can arise where one wants to shift one application from one platform to other and reason may differ for different situations either for stability or security. It becomes really hard to develop one application again starting from scratch just to shift from one platform to another. It requires a lot of man hours and experience to do this task, But there are some tools available nowadays, which helps you to convert Java to C# source code without taking too much time.
These tools help web developers to do their task easily and effectively, So today we are going to share some good tools to convert Java to C# source code. Don’t forget to share your experience which you may have experienced during shifting your project from one platform to another.
1) Sharpen
Sharpen is one of the best tool/plugin of Eclipse that helps to convert Java to C# with some special syntax. 1) ignore classes 2) ignore documentation 3) merge classes with others 4) translate specific methods to .net properties 5) translate specific methods to .net events

2) Java to C# Converter
This is another excellent tool for Java to C# Convertor with some great Key benefits such as- 1) Accurate and comprehensive 2) Converts entire Java folders from Java to C# 3) Fast – thousands of lines converted from Java to C# per minute 4) Extremely responsive, personalized customer support 5) Easy to use 6) Produces helpful notes, warnings, and ‘to do’ comments 7) Excellent learning tool for those new to C# from a Java background

3) Octopus
It parses java source code and emits accurate C# code. Most of the time, the resulting code will compile without any manual editing. This one is the best translator among all convertors.

4) XES – Java To C#
Click on the link and just follow the user guide to that helps to converting Java Source code to C#.

5) Java Language Conversion Assistant 2.0
Java Language Conversion Assistant is a tool that automatically converts existing Java-language code into Visual C# for developers who want to move existing applications to the .NET Framework.

6) Varycode
Verycode is the best online web services that allows source code conversion c#, VB, Java, Ruby, Python and C++. This is the online service, users can access anywhere.

转:6款Java转C#的最佳工的更多相关文章
- paip.java gui swt/jface 最佳实践
paip.java gui swt/jface 最佳实践 1. 工具:Eclipse +jigloo4 1 2. 安装插件: 1 1. IMPORT swt lib 2 2. 新建立窗体 2 3. 运 ...
- 【转】推荐一款Java反编译器,比较好用
转自:http://www.blogjava.net/xmatthew/archive/2008/10/28/237203.html 推荐一款Java反编译器,也使用了挺久的了,感觉还是很好用,就拿出 ...
- jsoup 是一款Java 的HTML解析器,可直接解析某个URL地址
jsoup 是一款Java 的HTML解析器,可直接解析某个URL地址.HTML文本内容.它提供了一套非常省力的API,可通过DOM,CSS以及类似于jQuery的操作方法来取出和操作数据.
- paip.提升性能--多核编程中的java .net php c++最佳实践 v2.0 cah
paip.提升性能--多核编程中的java .net php c++最佳实践 v2.0 cah 作者Attilax 艾龙, EMAIL:1466519819@qq.com 来源:attilax ...
- atitit.Atitit. Gui控件and面板-----服务端控件 java struts的实现最佳实践
atitit.Atitit. Gui控件and面板-----服务端控件 java struts的实现最佳实践 1. 服务器控件的类别 1 1.1. 数据控件:该类控件可细分为两种类型:数据源控件和数 ...
- 推荐一款Java反编译器,比较好用
转自:http://www.blogjava.net/xmatthew/archive/2008/10/28/237203.html 推荐一款Java反编译器,也使用了挺久的了,感觉还是很好用,就拿出 ...
- 阿里巴巴的26款Java开源项目
阿里巴巴的26款Java开源项目 开源展示了人类共同协作,成果分享的魅力.没有任何一家网络公司可以不使用开源技术,仅靠自身技术发展起来.“取之于开源,用之于开源,才能促进开源的良性发展”,阿里巴巴各个 ...
- Java 小技巧和在Java避免NullPonintException的最佳方法(翻译)
前几天就g+里面看到有人引用这篇博文.看了一下.受益颇多. 所以翻译过来,希望和大家一起学习.本人英语水平有限,假设有错,请大家指正. 原文地址(须要翻墙):http://ja ...
- Java异常处理 10 个最佳实践
异常处理是Java 开发中的一个重要部分.它是关乎每个应用的一个非功能性需求,是为了处理任何错误状况,比如资源不可访问,非法输入,空输入等等.Java提供了几个异常处理特性,以try,catch 和 ...
随机推荐
- WAD独立安装版USB Loader的下载和安装
背景知识 我使用Wad Manager来安装WAD版软件,所以需要先在Wii上面把Wad Manager准备好.详情可以参考我写的另外一篇文章<Wad Manager的下载和运行>(链接: ...
- Android新浪微博客户端(六)——Home界面的ListView
原文出自:方杰|http://fangjie.info/?p=184转载请注明出处 最终效果演示:http://fangjie.info/?page_id=54该项目代码已经放到github:http ...
- [Java] 垃圾回收机制 ( Garbage Collection ) 简介
自动垃圾回收( Automatic Garbage Collection ) 自动垃圾回收,是指在堆(Heap)内存上分辨哪些对象还在被使用,哪些对象没有被使用,并清除没有被使用的对象.所以,这里的垃 ...
- hdu-1010 dfs+剪枝
思路: 剪枝的思路参考博客:http://www.cnblogs.com/zibuyu/archive/2012/08/17/2644396.html 在其基础之上有所改进 题意可以给抽象成给出一个 ...
- Swift基础语法学习总结二
1.函数 1.1 func funcNmae()->(){} 这样就定义了一个函数,它的参数为空,返回值为空,如果有参数和返回值直接写在两个括号里就可以了 1.2 参数需要指明类型,而如果没有返 ...
- 绘图(CGContext)
转自 http://blog.csdn.net/zhenyu5211314/article/details/24230581 0 CGContextRef context = UIGraphicsGe ...
- 从无到有开发连麦直播技术<转>
转贴地址:http://blog.csdn.net/heisedelangzi/article/details/52400333 从无到有开发连麦直播技术点整理-AnyRTC 直播关键字 采集.前处理 ...
- iPhone手机GPS地图位置好帮手
十一国庆黄金周近在眉睫,我先祝大家过一个愉快开心的国庆长假. 假期内,难免老友聚会吃饭聊天联络感情,年轻朋友相亲约会,一家人出门旅游.平时,我们聚会时,总有要来的人找不到聚会地点,需要反复打电话确认: ...
- SVN经常使用命令说明
SVN版本号:1.5 及更新版本号 名词说明: WC:Working Copy 你的工作区 Versioned:受控的:受版本号控制的 SVN是什么? SVN是开源的版本号控制系统. 比CVS很多其它 ...
- 刚接触js感觉好吃力啊
我是一个新手,最近刚刚开始学习js这门语言,感觉好难,有一种无从下手的感觉,不知道应该从哪里学习,虽然也看了很多的书,但是对于一个没有计算机基础的人来说,真的是一种煎熬,每一个名词都要去查.万事开头难 ...