eclipse icon

eclipse 2019. 11. 11. 10:49

Annotation 뒤에 아무 코드도 없을 때 

 

/* O */
    @Autowired
    private AppleRepository appleRepository;

/* X */
    @Autowired


출처 http://gwons.blogspot.com/2014/11/java.html

String originalStr = "Å×½ºÆ®"; // 테스트 
String [] charSet = {"utf-8","euc-kr","ksc5601","iso-8859-1","x-windows-949"};
  
for (int i=0; i<charSet.length; i++) {
 for (int j=0; j<charSet.length; j++) {
  try {
   System.out.println("[" + charSet[i] +"," + charSet[j] +"] = " + new String(originalStr.getBytes(charSet[i]), charSet[j]));
  } catch (UnsupportedEncodingException e) {
   e.printStackTrace();
  }
 }
}



The void operator evaluates the given expression and then returns undefined.

(https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/void)


my ($result3, $tmp3) = split /\|/ ,$result2;   # O

my ($result3, $tmp3) = split "\|" ,$result2;  # X

(https://www.biostars.org/p/99100/)

 


java mysql

2019. 10. 21. 16:46

보호되어 있는 글입니다. 내용을 보시려면 비밀번호를 입력하세요.


eclipse svn team syncronize with .... missing

 

team > share project > svn