Java Consultant
Job Title: Java Consultant- Staff Software Engineering
Location: Shanghai
Company: HP China (www.hp.com)
This is a position reporting to Product Development Manager. The Staff Software Engineering will be responsible for leading development of robust high-volume kernel framework. The successful candidate will be a top performer and versatile professional leading the design, development and implementation of system infrastructure at eBay. This position will be based in Shanghai.
Responsibilities:
ž Define, design, implement, unit test and debug complex, multi-tier distributed software applications on eBay platform.
ž Work with other engineers, product management, QA and Operation team to design and implement application features
ž Estimate engineering effort, plan implementation, and rollout system changes.
ž Develop industry and product technical expertise.
ž Work closely with the other Product Development teams in US or India.
Requirements:
ž BS, MS, or PhD in Computer Science or related technical discipline (or equivalent).
ž A solid foundation in computer science, with strong competencies in data structures, algorithms, and software design.
ž Extensive programming experience in Java and J2EE (strong OO skills preferred).
ž At least 3~5 years of large systems software design and development experience. Good knowledge about performance and scalability
ž Mature Debugging & troubleshooting skills in Large-scale software product.
ž Fluent communication skills in Oral English communication and email writing.
ž Working Experience in Multi-national Company is a plus.
ž Coding skills in JavaScript/AJAX, database design and SQL, and/or knowledge of XML and SOA/Webser
相关文档:
Java学习从入门到精通
一、 JDK (Java Development Kit)
JDK是整个Java的核心,包括了Java运行环境(Java Runtime Envirnment),一堆Java工具和Java基础的类库(rt.jar)。不论什么Java应用服务器实质都是内置了某个版本的JDK。因此掌握JDK是学好Java的第一步。最主流的J ......
个人简历
个人信息
姓名
:
朱金国
性别
:
男
出生日期
:
1988
年
1
月
9
日
Email
:
zhujinguo2009@gmail.com
......
整理了一下常用到的Java卡开发包里的方法,以后就能加快开发速度了。
//Java Card开发方法查询
import java.lang.*;
import javacard.framework.*;
import javacard.security.*;
import javacardx.crypto.*; //该包为扩展包
//install方法
public static void install(byte[] bArray, ......
首先解释两个概念,何为序列化?何为反序列化?
序列化:将对象转化成流的过程称为序列化
反序列化:将流转化成对象的过程称之为反序列化
序列化与反序列化必须遵守的原则
a) Java对象
在java中要想使一个java对象可以实现序列化与反序列化,必须让该类实现java.io.Serializable接口
java.io.S ......