일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 파일 접근 권한 #linux #chown #chmond #umask #명령어
- java
- 자바
- 디지털 포렌식
- 디지털포렌식 연구회 워크샵 #디지털포렌식 #디지털포렌식챌린지 #Forensic #ctf #정보보호학회
- 탈중화
- 안드로이드 #스레드 #핸들러 #예제
- It
- 코딩
- Injection #Reflected #웹취약점
- Forensic #CTF #디지털포렌식 #disk forensic
- evm
- 디지털포렌식챌린지 #dfchallenge #디지털포렌식 #Forensic
- 비박스 #웹취약점분석 #버그바운티 #bee-box #웹 #모의해킹
- Forensic CTF #disk Forensic #windows file analyzer #WFA #Codegate 2012 F100
- EnCase #mount #Forensic #image mount
- #정보보안 #어셈블리 #저급언어 #기계어 #it #정보보안
- PYTHON
- 프로그래밍
- CIDR #서브넷 #Network #ip 주소고갈
- snedmail #linux #정보보안기사 #정보보안산업기사 #mail protocol
- forensic
- 파이썬
- HTML Injection #bWAPP
- 포렌식
- 정보보안기사 #정보보안산업기사 #클라우드컴퓨팅 #보안 #컴퓨팅보안
- 객체
- 메소드
- 정보보안기사 #정보보안산업기사 #2020년 정보보안기사 #시험일정
- 안드로이드 #서비스 #안드로이스 서비스 #Android #java
Archives
- Today
- Total
Jsecurity
안드로이드 - 서비스 본문
- 서비스를 시작시키기 위해 startService()메서드를 호출할 때는 인텐트 객체를 파라미터로 전달하며, 인텐트 객체는 어떤 서비스를 실행할 것인지에 대한 정보를 가지고 있다.
- 시스템은 서비스를 시작시킨 후 인텐트 객체를 서비스에 전달한다.
새로운 서비스 추가하기
프로젝트 영역에서 [우클릭] -> New -> Service -> Service 메뉴를 이용해 서비스 추가
My_Service 클래스 안에 마우스 커서를 둔 상태로 마우스 우클릭, 팝업 메뉴에서 [Generate -> Override Methods]
메인 액티비티 레이아웃 구성 (서비스 예제)
MainActivity.java
public class MainActivity extends AppCompatActivity {
EditText editText;
Button btnSend;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
editText = findViewById(R.id.editText);
btnSend = findViewById(R.id.btnSend);
btnSend.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String name = editText.getText().toString();
//인텐트 객체 만들고 부가 데이터 삽입
Intent intent = new Intent(getApplication(), MyService.class);
intent.putExtra("command", "show");
intent.putExtra("name",name);
//서비스 시작
startService(intent);
}
});
Intent passwdIntent = getIntent();
processIntent(passwdIntent);
}
@Override
protected void onNewIntent(Intent intent) {
//액티비티가 새로 만들어질 때 전달된 인텐트 처리
processIntent(intent);
super.onNewIntent(intent);
}
private void processIntent (Intent Intent){
if (Intent != null){
String command = Intent.getStringExtra("command");
String name = Intent.getStringExtra("name");
//토스트 메시지 출력
Toast.makeText(getApplicationContext(), "command : "+command +
", name: "+ ", name :" + name, Toast.LENGTH_LONG).show();
}
}
}
MyService.java
public class MyService extends Service {
private static final String TAG = "MyService";
public MyService() {
}
@Override
public void onCreate() {
super.onCreate();
Log.d(TAG,"onCreate() 호출됨");
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Log.d(TAG,"onStartCommand() 호출됨");
if (intent == null){
return Service.START_STICKY;
}else{ //인텐트 객체가 null이 아니면 processCommand()메소드 호출
processCommand(intent);
}
return super.onStartCommand(intent, flags, startId);
}
private void processCommand(Intent intent){
//인텐트 데이터 가져오기
String command = intent.getStringExtra("command");
String name = intent.getStringExtra("name");
//로그 띄우기
Log.d(TAG, "command: "+command+", name: "+name);
//5초동안 1초에 한번씩 로그 출력
for (int i=0; i<5; i++){
try{
Thread.sleep(1000);
Log.d(TAG,"waiting "+ i +" seconds");
}catch(Exception e){}
}
//액티비티를 띄우기 위한 인텐트 객체 생성
Intent showintent = new Intent (getApplicationContext(), MainActivity.class);
//인텐트에 플래그 추가
showintent.addFlags(
intent.FLAG_ACTIVITY_NEW_TASK |
Intent.FLAG_ACTIVITY_SINGLE_TOP |
Intent.FLAG_ACTIVITY_CLEAR_TOP);
showintent.putExtra("command","show");
showintent.putExtra("name",name+"from service");
startActivity(showintent);
}
@Override
public void onDestroy() {
super.onDestroy();
Log.d(TAG, "onDestroy() 호출됨");
}
@Override
public IBinder onBind(Intent intent) {
throw new UnsupportedOperationException("Not yet implemented");
}
}
앱실행
'프로그래밍언어 > Java_Language' 카테고리의 다른 글
안드로이드 - 명화 선호도 투표 앱 만들기 (0) | 2019.10.21 |
---|---|
안드로이드 앱 프로그래밍 프로젝트 생성 (0) | 2019.08.26 |
JSP 액션태그 (0) | 2019.04.13 |
컬렉션 (collection) 개념 (0) | 2019.04.02 |
Java 9일차 : 상속(inheritance) (0) | 2018.11.14 |
Comments