일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 선택적조인
- oracle
- WebLogic
- Google Map
- PHP
- Struts
- phonegap
- JDOM
- tomcat
- MySQL
- rowspan
- PLSQL
- ibsheet
- appspresso
- sencha touch
- Spring
- GPS
- iBATIS
- Eclipse
- Ajax
- 전자정부프레임워크
- JSON
- node.js
- Android
- 가우스
- swingx
- MFC
- dock
- jsr 296
- jQuery
- Today
- Total
목록Developement (559)
Where The Streets Have No Name
import org.jsoup.Jsoup; import org.jsoup.nodes.Document; import org.jsoup.nodes.Element; import org.jsoup.select.Elements; public class Demo2 { public static void main(String[] args) throws Exception { Document doc = Jsoup.connect("http://mlbpark.donga.com/mbs/articleL.php?mbsC=bullpen&cpage=1").get(); System.out.println(doc.title()); Elements els = doc.getElementsByClass("G12read"); Elements el..
import java.io.BufferedInputStream; import java.io.IOException; import java.net.URL; import java.net.URLConnection; import android.app.Activity; import android.content.Context; import android.content.res.TypedArray; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.net.Uri; import android.os.Bundle; import android.util.DisplayMetrics; import android.util.Log; ..
출처 : http://code.google.com/p/jabberoid/ 위 사이트에서 소스를 받아서 smack라이브러리는 asmack으로 교체해서 빌드후 돌려봤는데 그럭저럭 돌아가네요 서버는 openfire로 구성해서 환경을 만들었습니다. 스마트폰으로 메신저 환경을 구성하려는 분들은 참고하면 괜찮을듯합니다.
출처 : http://saltybeagle.com/2009/09/cross-origin-resource-sharing-demo/ 아래 스크립트를 이용해서 안드로이드에서도 정상적으로 호출됩니다. /** * This is for Cross-site Origin Resource Sharing (CORS) requests. * * Additionally the script will fail-over to a proxy if you have one set up. * * @param string url the url to retrieve * @param mixed data data to send along with the get request [optional] * @param function callback fu..
참고 : http://kgriff.posterous.com/phonegap-10-android-plugin-updates http://kgriff.posterous.com/building-a-phonegap-plugin-for-android /res/xml/plugins.xml package net.nnn.phonegapdemo; import org.json.JSONArray; import org.json.JSONException; import android.util.Log; import android.widget.Toast; import com.phonegap.api.Plugin; import com.phonegap.api.PluginResult; import com.phonegap.api.Plugin..
출처 : http://javafreak.tistory.com/226 라이브러리 : http://commons.apache.org/compress/ import java.io.BufferedOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.nio.charset.Charset; import java.util.Stack; import org.apache.commons.compress.archivers.zip.Zi..
Ext.setup({ tabletStartupScreen: 'tablet_startup.png', phoneStartupScreen: 'phone_startup.png', icon: 'icon.png', glossOnIcon: false, onReady: function() { var panel = new Ext.TabPanel({ tabBar: { dock: 'bottom', ui: 'light', layout: { pack: 'center' } }, fullscreen: true, cardSwitchAnimation: 'slide',//'fade', 'slide', 'flip', 'cube', 'pop', 'wipe' items: [aboutPanel] }); Ext.Ajax.request({ url..
출처 : http://www.sitepoint.com/javascript-json-serialization/ /** * Implements JSON stringify and parse functions * v1.0 * * By Craig Buckler, Optimalworks.net * * As featured on SitePoint.com * Please use as you wish at your own risk. * * Usage: * * // serialize a JavaScript object to a JSON string * var str = JSON.stringify(object); * * // de-serialize a JSON string to a JavaScript object * var..
Main Page
출처 : http://www.google.mw/support/forum/p/gmail/thread?tid=5f5ae01849704469&hl=ko&fid=5f5ae018497044690004a35e568095c8&hltp=2 http://maps.google.com/maps/api/js?v=3.3&sensor=true_or_false 위와 같이 버전 정보를 3.3로 설정해서 로딩한다.
Ext.setup({ tabletStartupScreen: 'images/tabletStartupScreen.png', phoneStartupScreen: 'images/phoneStartupScreen.png', tabletIcon:"images/tabletIcon.png", phoneIcon:"images/phoneIcon.png", glossOnIcon: true, statusBarStyle:"black", fullscreen:true, preloadImages:[], scope:this, onReady: function () { // 날짜포멧 Ext.apply(Ext.util.Format, { defaultDateFormat: 'Y/m/d' }); var localMonthNames = ['1월'..
http://www.joeyrivera.com/2009/using-mysql-stored-procedures-with-php-mysqlmysqlipdo/ Wondering how to use stored procedures with PHP and MySQL? So was I and here’s what I’ve learned. In this tutorial I’ll explain how to use PHP (I’m using 5.2.6) to call MySQL (I’m using 5.0.2) stored procedures using the following database extensions: MySQL - http://us.php.net/manual/en/book.mysql.php MySQLi - ..
import org.jivesoftware.smack.Connection; import org.jivesoftware.smack.PacketListener; import org.jivesoftware.smack.XMPPConnection; import org.jivesoftware.smack.XMPPException; import org.jivesoftware.smack.filter.MessageTypeFilter; import org.jivesoftware.smack.filter.PacketFilter; import org.jivesoftware.smack.packet.Message; import org.jivesoftware.smack.packet.Packet; import org.jivesoftwa..
smack라이브러는 http://code.google.com/p/asmack/ 에서 가져온걸 사용합니다. import android.app.Activity; import android.os.Bundle; import android.os.Handler; import android.util.Log; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.TextView; import android.widget.Toast; import org.jivesoftware.smack.Chat; import org.jivesoftware.smack.Connection; impor..
출처 : http://www.maheshchari.com/jquery-ajax-error-handling/ jQuery is the most awesome javascript library that made easy for asynchronous ajax calls.it has global ajaxfunction and some pre defined ajax functions like $.get, $.post, load .etc. but we don’t find any error messagesby default with this library. we can see the errors with firefox’s addon firebug or with IE developer toolbar.So we man..
웹데브모바일 3월 세미나 자료 : Raphael 로 손쉽게 그리는 웹벡터 그래픽 from 웹데브모바일
http://www.java2s.com/Tutorial/MySQL/0040__Select-Query/0440__User-Defined-Variables.htm