Java

Eclipse 入門 - その2

Eclipse : http://www.eclipse.org/ eclipse 起動 Workbench クリック プロジェクト作成 File -> New -> Java Project Project name : testproj Java クラス作成 src 右クリック -> New -> Class Package : test Name : Hello チェック : public static void…

Junit 入門(HelloWorld) - その1

Junit : http://www.junit.org/ MacBook% vim StringTest.java import org.junit.*; import static org.junit.Assert.*; public class StringTest { @Test public void testHelloWorld() { HelloWorld world = new HelloWorld(); assertNotNull(world); asse…

Java インストール

Java : http://www.java.com/en/ MacBook% ssh -i .ssh/ssh.key elmarverde@サーバ elmarverde% cd src/ elmarverde% sudo yum install jpackage-utils ====================================================================== Package Arch Version Repos…