일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- phonegap
- oracle
- node.js
- Google Map
- Ajax
- tomcat
- rowspan
- Android
- ibsheet
- jsr 296
- JDOM
- GPS
- appspresso
- 전자정부프레임워크
- Struts
- Spring
- jQuery
- PLSQL
- swingx
- 선택적조인
- sencha touch
- Eclipse
- MySQL
- iBATIS
- 가우스
- JSON
- dock
- MFC
- PHP
- WebLogic
- Today
- Total
목록Developement (559)
Where The Streets Have No Name
위와 같이 안드로이드 프로제트를 생성합니다. activity클래스를 phonegap에서 제공되는 DroidGap으로 고친후 webview의 플러그인을 활성화하는 코드를 추가합니다 import android.app.Activity; import android.os.Bundle; import android.webkit.WebSettings; import android.webkit.WebSettings.LayoutAlgorithm; import android.webkit.WebSettings.PluginState; import com.phonegap.*; public class FlashTestActivity extends DroidGap { /** Called when the activity is first..
http://edwin.baculsoft.com/2010/09/connecting-a-servlet-ibatis-and-glassfish-3/
http://css.dzone.com/news/interesting-jquery-mobile http://miamicoder.com/2011/interesting-jquery-mobile-tutorials/ http://www.codeforest.net/jquery-mobile-tutorial-basics http://thoughtsunlimited.net/intro-to-jquery-mobile/ http://www.elated.com/articles/jquery-mobile-what-can-it-do-for-you/ http://devgrow.com/mobile-web-dev-using-jquery-mobile/ http://net.tutsplus.com/tutorials/javascript-ajax..
http://www.smashingmagazine.com/2011/01/12/guidelines-for-responsive-web-design/
우선 폴더 구성입니다 eclipse를 실행한후 server 뷰를 선택해서 glassfish관련 adapter를 설히한후 새로운 서버를 추가합니다. glassfish폴더를 지정합니다.
http://viralpatel.net/blogs/2009/03/dynamically-add-remove-rows-in-html-table-using-javascript.html Select Sr. No. Value Value 1 선택해주세요 홍길동 고길동 아무개
http://javaboutique.internet.com/tutorials/excep_struts/index-2.html http://stackoverflow.com/questions/2403194/struts-1-how-to-display-actionmessages http://sunhuili.springnote.com/pages/4757213
C:\xampp\apache\conf\extra 에서 httpd-xampp.conf을 연다 Order deny,allow Allow from all ErrorDocument 403 /error/HTTP_XAMPP_FORBIDDEN.html.var 위와 같이 수정해서 보안을 풀어준다.
CREATE TABLE ERRORLOG ( ID NUMBER NOT NULL, TIME DATE NOT NULL, CODE VARCHAR2(9 BYTE) NOT NULL, MESSAGE VARCHAR2(2000 BYTE) NOT NULL, PACKAGE_NAME VARCHAR2(100 BYTE), PROCEDURE_NAME VARCHAR2(100 BYTE) NOT NULL, LOCATION NUMBER, PARAMETERS VARCHAR2(4000 BYTE) ); CREATE SEQUENCE ERRORLOG_ID_SEQ MINVALUE 1 MAXVALUE 999999999999999999999999999 INCREMENT BY 1 START WITH 1 CACHE 20 NOORDER NOCYCLE ; C..
http://www.java2s.com/Code/Java/Database-SQL-JDBC/SerializedAndDeserializeObjectOracle.htm
mybatisConf.xml logMapper.xml select * from apache_log where seq = #{id} DBFactory.java package mybatis; import java.io.IOException; import java.io.Reader; import org.apache.ibatis.io.Resources; import org.apache.ibatis.session.SqlSession; import org.apache.ibatis.session.SqlSessionFactory; import org.apache.ibatis.session.SqlSessionFactoryBuilder; public class DBFactory { private static DBFacto..
import java.awt.Color; import java.awt.Cursor; import java.awt.Font; import java.awt.Graphics; import java.awt.GridBagConstraints; import java.awt.GridBagLayout; import java.awt.event.KeyEvent; import java.awt.event.KeyListener; import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; import java.awt.event.MouseMotionAdapter; import javax.swing.JButton; import javax.swing.JComponent..
import java.io.File; import java.io.FileOutputStream; import java.util.Iterator; import java.util.List; import org.jdom.Document; import org.jdom.Element; import org.jdom.JDOMException; import org.jdom.input.SAXBuilder; import org.jdom.output.Format; import org.jdom.output.XMLOutputter; import org.jdom.xpath.XPath; public class CdrXmlDemo4 { public static void main(String[] args) { try { SAXBuil..
import java.io.FileOutputStream; import java.io.IOException; import java.math.BigInteger; import org.jdom.Document; import org.jdom.Element; import org.jdom.output.Format; import org.jdom.output.XMLOutputter; public class CdrXmlDemo1 { public static void main(String[] args) { Element root = new Element("cdr"); Element message = new Element("message"); root.addContent(message); Element messageId ..
import java.io.File; import org.jdom.Document; import org.jdom.JDOMException; import org.jdom.input.SAXBuilder; import org.jdom.output.Format; import org.jdom.output.XMLOutputter; public class XMLOutputterDemo2 { public static void main(String[] args) { try { SAXBuilder b = new SAXBuilder(false); // true -> validate // Create a JDOM document. Document doc = b.build(new File("e:/people.xml")); //..
import java.awt.BorderLayout; import java.awt.Component; import java.awt.Dimension; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.JTabbedPane; public class TabbedTest extends JFrame { private JTabbedPane jtp = new JTabbedPane(); static int cou..
DefaultMutableTreeNode rootNode = new DefaultMutableTreeNode(new TableRowData("CF", "", "", "", true)); DefaultMutableTreeNode incomeNode = new DefaultMutableTreeNode(new TableRowData("Income", "25000", "5000", "300000", true)); incomeNode.add(new DefaultMutableTreeNode(new TableRowData("Salary1", "250001", "50001", "3000001", false))); incomeNode.add(new DefaultMutableTreeNode(new TableRowData(..
Exception in thread "AWT-EventQueue-0" java.lang.IndexOutOfBoundsException: Index: 380, Size: 380 at java.util.ArrayList.RangeCheck(ArrayList.java:547) at java.util.ArrayList.get(ArrayList.java:322) at org.jdesktop.swingbinding.impl.ListBindingManager$ColumnDescriptionManager.validateBinding(ListBindingManager.java:191) at org.jdesktop.swingbinding.impl.ListBindingManager.valueAt(ListBindingMana..