- 설치 환경

  * fedora17 32bit

  * root 계정으로 설치


- 설치 파일

  * MySQL-server-5.5.29-1.linux2.6.i386.rpm

  * MySQL-client-5.5.29-1.linux2.6.i386.rpm

    - /usr/bin/mysql 및 /usr/bin/mysqladmin 등 mysql server에 접근 할 수 있는 tool 제공

  * MySQL-shared-5.5.29-1.linux2.6.i386.rpm


- 설치

# ll

-rw-rw-r--. 1 root root 16923959 Jan  3 11:38 MySQL-client-5.5.29-1.linux2.6.i386.rpm

-rw-rw-r--. 1 root root 51875776 Jan  2 19:53 MySQL-server-5.5.29-1.linux2.6.i386.rpm

-rw-rw-r--. 1 root root  1923090 Jan  3 11:38 MySQL-shared-5.5.29-1.linux2.6.i386.rpm


# rpm -Uivh MySQL-server-5.5.29-1.linux2.6.i386.rpm 

PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !

To do so, start the server, then issue the following commands:


/usr/bin/mysqladmin -u root password 'new-password'


Alternatively you can run:

/usr/bin/mysql_secure_installation


which will also give you the option of removing the test

databases and anonymous user created by default.  This is

strongly recommended for production servers.


See the manual for more instructions.


Please report any problems with the /usr/bin/mysqlbug script!


# rpm -Uivh MySQL-client-5.5.29-1.linux2.6.i386.rpm 
Preparing...                ########################################### [100%]
   1:MySQL-client           ########################################### [100%]

# rpm -Uivh MySQL-shared-5.5.29-1.linux2.6.i386.rpm 
Preparing...                ########################################### [100%]
   1:MySQL-shared           ########################################### [100%]


- 시작 및 종료
# service mysql start

# service mysql stop


- root password 설정

최초 설치 후 root password 설정

/usr/bin/mysqladmin -u root password new-password



'DB > MySQL' 카테고리의 다른 글

mysql 클러스터(cluster)  (0) 2013.03.08
mysql root password 초기화  (0) 2013.01.03
mysql - join  (1) 2012.10.19
mysql - 사용자 정의 변수  (0) 2012.10.15
mysql - boolean 데이터 타입  (0) 2012.09.26
Posted by linuxism
,


출처 - http://wiki.kldp.org/HOWTO//html/Adv-Bash-Scr-HOWTO/index.html




'System > Linux' 카테고리의 다른 글

SELinux - AVC Denials  (0) 2013.01.08
linux - audit2allow  (0) 2013.01.08
Linux VFS(Virtual File System Switch) 해부  (0) 2012.10.29
linux - logrotate  (0) 2012.09.07
debian/ubuntu - iptables 저장 및 restore  (0) 2012.09.01
Posted by linuxism
,


WebView 안에서 자바스크립트 함수를 호출하여 액티비티 안의 함수를 호출할 수 있다.

새로운 액티비티를 호출하거나 데이터를 fetch할 때 사용된다.

  1. 자바스크립트 인터페이스 클래스 만들기
  2. WebView 에 인터페이스 클래스 등록하기
  3. Javascript에서 Android 함수 호출하기

1. 자바스크립트 인터페이스 클래스 만들기

WebView 에 등록할 인터페이스를 만든다. 
인터페이스의 함수는 자바스크립트에서 호출할 때 사용된다. 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
final class MyJavaScriptInterface {
    MyJavaScriptInterface() {
 
    }
 
    /**
     * This is not called on the UI thread. Post a runnable to invoke
     * loadUrl on the UI thread.
     */
    public void callAndroid(final String str) {
        mHandler.post(new Runnable() {
            public void run() {
                textView.setText(str);
            }
        });
 
    }
}  

2. WebView 에 인터페이스 클래스 등록하기

WebView 에 자바스크립트 인터페이스 클래스를 등록하고 이름을 준다. 
webview.addJavascriptInterface(new MyJavaScriptInterface(), "myJs");
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
     getWindow().requestFeature(Window.FEATURE_PROGRESS);
     setContentView(com.misun.samples.R.layout.sample07_a);
      
     webview = (WebView)findViewById(com.misun.samples.R.id.s07_webview);
     textView = (TextView)findViewById(com.misun.samples.R.id.s07_textview);
 
     WebSettings webSet = webview.getSettings() ;
     webSet.setJavaScriptEnabled(true) ;
     webSet.setBuiltInZoomControls(true);  
     webview.addJavascriptInterface(new MyJavaScriptInterface(), "myJs");
         
}

3. Javascript에서 Android 함수 호출하기

자바스크립트에서 인터페이스 함수를 호출한다. 
window.myJs.callAndroid(str);
1
2
3
4
function callAndroid(){
    var str = myFrm.mytxt.value;
    window.myJs.callAndroid(str);
}
1
2
3
4
5
6
7
<form id="myFrm" action="">
    <input id="mytxt" type="text">
    <button onclick="javascript:callAndroid()">호출하기</button>
 
</form>

실행화면

Webview의 입력창에 글자를 입력하고 버튼을 누르면 상단 TextView 에 해당글자가 나타난다.

참고자료

  • Using WebViews

  • 출처 - http://angmang.tistory.com/274




    'Android > Common' 카테고리의 다른 글

    android - 자신 전화번호 확인  (0) 2013.01.21
    Why do variable names often start with the letter 'm'?  (0) 2013.01.19
    android - WebView 사용 하기  (1) 2012.11.03
    android - app 버전 관리  (0) 2012.10.07
    service - Service API 변경  (0) 2012.09.28
    Posted by linuxism
    ,