일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 컬럼명
- 웹뷰
- STS
- MANTIS
- varags
- Web Service
- Maven
- 이클립스
- Java
- Eclipse
- 안드로이드
- Apache Lucene
- scrollView
- Android
- jsp
- WebView
- MSsql
- 웹 서비스
- javascript
- C#
- SpringSource Tool Suite
- MS-SQL
- decompiler
- Bootstrap
- asp.net
- 자바
- Redirect
- 자바스크립트
- TextBox
- html
- Today
- Total
목록자바 (15)
bboks.net™
Java의 System.currentTimeMillis() 와 동일한 효과를 내는 C# code public long CurrentTimeMillis() { DateTime Epoch = new DateTime(1970, 1, 1); return (long)(DateTime.UtcNow - Epoch).TotalMilliseconds; } C#에서는 기준점이 0001-01-01이지만 Java에서는 1970-01-01이다. 또한 C#은 local date를 사용하지만 Java는 UTC date를 사용한다. 따라서 기준일을 1970 년 1월 1일로 설정하고 시간도 UTC로 얻어와 계산하면 된다. [출처] Java System.currentTimeMillis() equivalent
A type of inner class that has no name that you define right in the middle of a method (where static init blocks and instance init blocks count as methods). You define it, and create an object of that type as a parameter all in one line. An anonymous class is defined and instantiated in a single succinct expression using the new operator.Used for creating simple delegate callback objects.These a..
import javax.swing.*; import java.awt.*; public class NoTitleBarFrameTest { public static void main(String[] args) { JFrame f = new JFrame(); f.setUndecorated(true); f.setSize(300,300); f.setVisible(true); //JWindow w = new JWindow(); //w.setSize(300,300); //w.setVisible(true); } } setUndecorated 메소드를 사용해 보세요. 주의점을 setVisible(true) 전에 해야 한다는 것입니다. 또는 JFrame 대신 JWindow를 사용하시던지요. (밑에 주석 처리한 것입니다.)..