https://github.com/springmt/java_study
https://github.com/springmt/java_study
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/springmt/java_study
- Owner: SpringMT
- Created: 2016-03-19T15:55:23.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-03-19T15:55:43.000Z (almost 10 years ago)
- Last Synced: 2025-02-12T11:52:23.735Z (12 months ago)
- Language: Java
- Size: 24.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Javaをさくっと書いて実行させる
### ファイル作成
### コマンド実行
#### 単体
javac HelloWorld.java
java HelloWorld
#### gladleを使ったjUnitと合わせた使い方
```
brew install gradle
```
dir構成はこのリポジトリの通りにする
```
├── build.gradle
└── src
├── main
│ ├── java
│ │ ├── HelloWorld.java
│ │ └── org
│ │ └── json
│ │ ├── JSONTokener.java
│ │ └── JSONWriter.java
│ └── resources
└── test
├── java
│ └── HelloWorldTest.java
└── resources
```
gradle test