안드로이드 애뮬레이터에서 apk 추출방법
안드로이드 애뮬레이터에서 apk 추출방법
안드로이드
1.adb 설치
2.adb 설치폴더에 cmd.exe 복사해서 넣기
3.애뮬 실행하고(USB 디버깅모드로 만들기)
4.cmd 실행시키고
5. adb shell엔터치고
6. shell@m0:/ $ pm list packages -f
7. 패키지의 파일 경로를 복사하기 => package:/system/app/
BackupRestoreConfirmation.apk=com.android.backupconfirm
8. 도스 커맨드에서 adb pull /system/app/BackupRestoreConfirmation.apk 하고 엔터
안드로이드 개발시 아이콘 파일
안드로이드 개발시 아이콘 파일
안드로이드
안드로이드 개발시 아이콘 파일
ic_launcher.png
안드로이드 SQLite 소스
안드로이드 SQLite 소스
public class DBAccess extends SQLiteOpenHelper {
private static String DB_PATH ="";
private static String DB_NAME ="";
private SQLiteDatabase myDataBase;
private final Context myContext;
public DBAccess(Context context){
super(context,DB_NAME,null,1);
this.myContext=context;
}
public void createDataBase() throws IOException{
SQLiteDatabase checkDB = null;
try{
String myPath = DB_PATH + DB_NAME;
checkDB= SQLiteDatabase.openDatabase(myPath, null, SQLiteDatabase.NO_LOCALIZED_COLLATORS);
}catch (SQLiteException e){
}if(checkDB != null){
checkDB.close();
}
boolean dbExist = checkDB != null ? true : false;
if(dbExist){
this.getReadableDatabase();
}
스프링프로젝트에 tiles 추가하는 법
스프링프로젝트에 tiles 추가하는 법
자바
1.메이븐 pom.xml에 아래를 추가한다.
<dependency>
<groupId>org.apache.tiles</groupId>
<artifactId>tiles-servlet</artifactId>
<version>2.2.2</version>
</dependency>
<dependency>
<groupId>org.apache.tiles</groupId>
<artifactId>tiles-jsp</artifactId>
<version>2.2.2</version>
</dependency>
1.그리고 servelt설정파일()부분에 아래를 추가한다.
<bean id="tilesViewResolver"
class="org.springframework.web.servlet.view.tiles2.TilesViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.tiles2.TilesView" />
<property name="order" value="0" />
</bean>
<!-- Tiles Configurer -->
<bean id="tilesConfigurer"
class="org.springframework.web.servlet.view.tiles2.TilesConfigurer">
<property name="definitions">
<list>
스프링기반이클립스 다운로드
스프링기반이클립스 다운로드
자바
http://spring.io/tools/sts/all
메이븐 설치하고 스프링프레임개발하려면 아무래도 스프링기반 이클립스를 써야 햘꺼 같다.
스프링 프로젝트 만든는법(2)
스프링 프로젝트 만든는법(2)
자바
8.web.xml에 아래를 추가한다.
<servlet>
<servlet-name>spring</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>spring</servlet-name>
<url-pattern>/app/*</url-pattern>
</servlet-mapping>
9.WEB-INF 우클릭후 NEW->Spring Bean Configuration FIle 클릭해서 위에 <servlet-name>에 사용한 spring에 -
servlet.xml을 더한
spring-servlet.xml로 입력후 Finish를 누르고 네임스페이스중 bean 과 context만 클릭한다. 그리고 생성된 파일에 아래
와 같이 넣는다.
<context:commponent-scan base-package="패키지명(com)"/>
10.src 밑에 패키지를 하나 만들고 그밑에 Cotroller class를 생성후 아래와 같이 입력한다.
package whiteship;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
@Controller
스프링 프로젝트 만든는법(1)
스프링 프로젝트 만든는법(1)
자바
1.Spring기반 이클립스를 깐다.(꼭) 여기에 메이븐이 들었는지 모르지만 메이븐이 없으면 플러그인을 마켓플레이스에서
깔아줌.
2.NEW-> Dynamic Web Procject
3.next 를 클릭하고 web.xml create 체크여부가 나오면 체크한다.
4. 그리고 WebContent를 다른이름을 바꿔도 된다.
5. 프로젝트 우클릭하고 New FIle 에서 pom.xml을 생성한다.
6. pom.xml 안에 아래파일을 넣고 프로젝트 우클릭하고 convert to Maven을 클릭한다.
7. 프로젝트 우클릭하고 Run as-> Maven Build 클릭후 goal에 war:inplace 를 넣고 돌린다.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-
instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>#########아무꺼나 나도 잘모름.######</groupId>
<artifactId>#########프로젝트 이름######</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<properties>
<spring.version>3.0.5.RELEASE</spring.version>
</properties>
<repositories>
<repository>
<id>springsource-repo</id>
<url>http://repo.springsource.org/release</url>
</repository>
<repository>
<id>jboss-repo</id>
<url>https://repository.jboss.org/nexus/content/groups/public/</url>
스프링 전자정부프레임워크 공부
스프링 전자정부프레임워크 공부
자바
http://www.egovframe.go.kr/wiki/doku.php?id=egovframework:rtea3.0
스트링
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLConnection;
public final class Test {
/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
String sHtml = "";
StringBuffer sbContent = new StringBuffer();
BufferedReader in = null;
try
{
URL url = new URL("http://kin.naver.com/qna/detail.nhn?d1id=8&dirId=81302&docId=191106289");
URLConnection urlconn = url.openConnection();
in = new BufferedReader(new InputStreamReader(urlconn.getInputStream(),"UTF-8"));
while((sHtml = in.readLine()) != null)
{
//System.out.println("gg"+sHtml);
sbContent.append("\n");
sbContent.append(sHtml);
}