`
Aga
  • 浏览: 218501 次
  • 性别: Icon_minigender_1
  • 来自: 天津
社区版块
存档分类
最新评论
文章列表

listview

带复选框的listview requestWindowFeature(Window.FEATURE_NO_TITLE); String hardCode[] = new String[]{"Local Weather", "Local Gas Price", "Local Movies", "Product Tips"}; setListAdapter(new ArrayAdapter<String>(this, android.R.layout.simple ...
package org.cxz.designPattern.combo; import java.io.BufferedInputStream; import java.util.Properties; public abstract class Father { private static final String configFilePath = "config.properties"; private static final String key = "className"; protected static Strin ...
Android可能算是现在最火的新技术之一了。我的下一份工作就是android。故此提前学习下,以适应将要到来的新工作、新平台。 目前网上的hello world之类的教程多如牛毛,相应文章数不胜数。我就不一一罗列了。太细节的问题我记不住,或者说也不想记住,故此写一篇入门文章做一个总结,以后也方便查找。 如何停止一个正在跑在虚拟机上的应用?重新部署应用的时候如果程序是跑着的我们无法重新部署应用,所以知道如何关闭app很重要。 说实话不怕大家笑话,我现在也没有从手机这端找到方法,我的方法是:到eclipse端切换到ddms(啥缩写我还真不知道) perspective在devices窗口当中可 ...

impdp

job_name=impdp_eccok_dz_full directory=work_exports_eccok_dz dumpfile=expdp_eccok_dz_full_%u.dmp logfile=impdp_eccok_dz_full.log content=ALL TRANSFORM=storage:n remap_schema=eccok_dz:local_eccok_dz remap_tablespace=ECCOK_DZ:users 1) Create a schema 2) Create or replace directory dir_name as ...

jvm 远程debug

    博客分类:
  • J2SE
-Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=9999,suspend=y
create or replace procedure get_authors_cur( cv_results in out sys_refcursor) is begin open cv_results for select id, first_name, last_name from authors; end; 这个oracle存储过程返回一个cursor类型变量。在下面的程序中,我们将从java中引用这个cursor(在java中是ResultSet) package dev.cxz.oracle; import java.sql.CallableSta ...
define_editor='"C:\Program Files\Notepad++\notepad++.exe"'; define_editor='vim'; set echo on; set time on; set pages 9999; set linesize 9999; set serveroutput on; set timing on; set feed 1; col object_name format a30; col column_name format a10 alter session set NLS_LANGUAGE='A ...
jms是j2ee标准的技术之一,jms分为了两种一种是queue模式,一种是topic模式。具体的区别很容易就从网上搜索到,可以看下,分析下。下面的代码实现了连个例子,一个是queue模式,一个是topic模式。中间件使用的是jboss4.2.3 代码直接见附件吧,我就不多说了,最近天冷,懒得写。
这两天在网上折腾,看到了jta的相关文章,很想自己尝试下j2ee中分布式事物的配置,顺表看看他们是怎么处理分布式的。抱着试一试的想法,我开始了jta之旅,没想到这条道路是那么艰险,犹如唐僧取经一般有着一把有一把的问 ...
分布式这个概念火了很久,但我始终没有想明白。最近在研究rmi的时候明白了一些。java中的分布式就是使用处于不同虚拟机对象,就像使用处于同一个虚拟机的对象一样。于是就想试试jboss的数据源。我只是简单的认为,这个虚拟机上的数据源就是个另一个jvm中的对象。下面还是上代码吧: package cxz.jndi; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.util.Properties; import javax.nam ...

java dynamic proxy

    博客分类:
  • J2SE
package proxy.cxz.org; import java.util.Date; public interface HelloService { public String echo(String msg); public Date getTime(); } package proxy.cxz.org; import java.util.Date; public class HelloServiceImpl implements HelloService { public String echo(String msg) { retur ...
// Default named.conf generated by install of bind-9.2.4-30.el4 options { directory "/var/named"; dump-file "/var/named/data/cache_dump.db"; statistics-file "/var/named/data/named_stats.txt"; pid-file "/var/run/named/named.pid& ...

挂载网上邻居

# mount -t smbfs -o username=xxx,password=xxx //hostname/dir /mnt/tmp

dns配置

一、环境RHEL5.0,系统安装过程中安装了bind相关的软件包,如下: [root@email named]# rpm -qa |grep bind bind-utils-9.3.3-7.el5 bind-chroot-9.3.3-7.el5 ypbind-1.19-7.el5 bind-9.3.3-7.el5 bind-libs-9.3.3-7.el5 二、说明: 我之前用过Redhat7.2-9,现在发现RHEL5.0在bind软件中使用了chroot技术,对于我这样之前没有接触过的人来说可能会造成一些麻烦,在这里我先说明一下。 由于使用了chroot技术,因此要求 ...
# CentOS-Base.repo # # This file uses a new mirrorlist system developed by Lance Davis for CentOS. # The mirror system uses the connecting IP address of the client and the # update status of each mirror to pick mirrors that are updated to and # geographically close to the client. You ...
Global site tag (gtag.js) - Google Analytics