페이지

2016년 1월 6일 수요일

Several Implementation Issues in Supporting Java 1.4

Introduction

Sites that are running their applications on Java 1.4 still exist. In case you are developing an application that supports Java 1.4 and later versions, you may find implementation issues similar to the list below.

Java Language

Not Supported

  • Enhanced for Loop (Using ":" in for loop) - Since Java 5
  • Generics - Since Java 5
  • Metadata (Annotations) - Since Java 5

Base Libraries

Not Supported

  • String.format() - Since Java 5
  • StringBuilder - Since Java 5

Loading Properties

Not Supported

  • public void load(Reader reader) throws IOException - Since Java 6

Supported

  • public void load(InputStream input) throws IOException

Parsing XML

Not Supported

  • JAXB - Since Java 6

Supported

  • JAXP

RSA Algorithm

Not Supported

  • RSA

Solution

  • Use Bouncy Castle as a JCE Security Provider.

댓글 없음:

댓글 쓰기

독일 V2 로켓과 런던 폭격 - 푸아송 분포 응용

독일 V2 로켓과 런던 폭격 - 푸아송 분포 응용 관심사는 2차 세계 대전 말기 독일 V2 로켓에 의한 런던 폭격 지점의 분포와 푸아송 분포 응용 사례였는데 우연히 접한 기사를 흥미있게 읽다가 오류로 의심되는 부분...