Android (15) 썸네일형 리스트형 Android Development configuration 1. android studio Installation https://developer.android.com/studio/ Download Android Studio and SDK tools developer.android.com 2. SDK Manager setting 3. Project folder & file structure in Project pannel 전화걸기 애 만들기 : 암시적 인텐트 사용 // package com.example.implicitintentexam; import android.content.Intent; import android.net.Uri; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.EditText; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView.. MAC 에 tomcat 설정 하기 펌 : http://hisexperience.tistory.com/entry/Mac에서-tomcat-60-설치하기Installing Tomcat on Mac OS XTo get Tomcat, visit the following link: http://tomcat.apache.org/. Once there, click on the Tomcat 5.5 link under the Download heading. Under Core, select the tar.gz file.Download the tar.gz file. Mac OS X will probably extract the file to a .tar file in your downloads directory. Move this .tar file to a.. jquery jQuery 시작하기 jQuery 시작하기 jQuery 시작하기 JAVA 1th JQuery / Ajax /HTML5 / CSS + JAVA [JSP [JSTL / EL ]] + spring3 eclipse setup 펌: http://www.androidpub.com/588 Java Try / Catch import java.io.*; public class TryCatch { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); String name; int kor, eng, math; try { name = in.readLine(); kor = Integer.parseInt(in.readLine()); math = Integer.parseInt(in.readLine()); eng = Integer.parseInt(in.readLine()); Studen.. Java String Compare public class StringTest { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub //String str1 = "Hello"; //String str2 = "Hello"; String str1 = new String("Hello"); String str2 = new String("Hello"); // if( str1.equals(str2) == true){ if( str1 == str2 ){ System.out.println("str1 == str2"); } else{ System.out.println("str != str2"); } } } 이전 1 2 다음