<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=unicode">
<META content="MSHTML 6.00.6000.16981" name=GENERATOR></HEAD>
<BODY>
<DIV id=idOWAReplyText90134>
<DIV><FONT face="Times New Roman" color=#000000 size=3>Hola,</FONT></DIV>
<DIV><FONT face="Times New Roman" color=#000000 size=3>acabo de probar ese código en un PC y funciona bien. Dudo que falle en la PDA.</FONT></DIV>
<DIV>Qué problema te da?</DIV>
<DIV>Qué valor has puesto en pathdbfFile?</DIV>
<DIV>Deberías enviar estos mensajes a la lista de desarrolladores:</DIV>
<DIV> </DIV>
<DIV><A href="http://listserv.gva.es/cgi-bin/mailman/listinfo/gvsig_desarrolladores">http://listserv.gva.es/cgi-bin/mailman/listinfo/gvsig_desarrolladores</A></DIV>
<DIV> </DIV>
<DIV>Saludos,</DIV>
<DIV><FONT face="Times New Roman" color=#000000 size=3></FONT> </DIV></DIV>
<DIV id=idSignature95885>
<DIV><FONT face="Courier New" size=2><FONT face="Times New Roman" size=3>Juan Lucas Domínguez Rubio<BR></FONT>---</FONT></DIV>
<DIV><FONT face="Courier New" size=2><FONT face="Courier New" size=2><FONT face="Courier New" size=2>Prodevelop SL, Valencia (España)</FONT></DIV>
<DIV>
<DIV><FONT face="Courier New" size=2>Tlf.: 96.351.06.12 -- Fax: 96.351.09.68<BR></FONT><A href="http://www.prodevelop.es/"><FONT face="Courier New" size=2>http://www.prodevelop.es</FONT></A><BR><FONT face="Courier New" size=2>---</FONT></DIV></FONT></DIV></FONT></DIV>
<DIV><BR>
<HR>
<FONT face=Tahoma size=2><B>De:</B> gvsig_usuarios-bounces@listserv.gva.es en nombre de Jose Yances<BR><B>Enviado el:</B> mar 09/02/2010 17:04<BR><B>Para:</B> gvSIG_usuarios@listserv.gva.es<BR><B>Asunto:</B> [Gvsig_usuarios] leer un dbf<BR></FONT><BR></DIV>
<DIV>buenas<BR><BR>Necesito leer un dbf independiente de la capa cartografica. tengo un archivo dbf en una ruta en mi dispositivo y lo estoy llamanado de la siguiente forma. pero no me abre el archivo. Alguien conoce alguna forma mas sencilla de leer un dbf y llenar un FeatureTemp?<BR><BR>SelectableDataSource dbfDataSource = SelectableDataSource.createDbfSelectableDataSource(new File(GvsigMobileGUIConstants.pathdbfFile), true);<BR> String[] dbf_names = dbfDataSource.getFieldNames();<BR> int[] types = new int[dbf_names.length]; <BR> dbfDataSource.start();<BR> for (int i=0;i<dbf_names.length;i++){<BR> types[i]=dbfDataSource.getFieldType(i);<BR> }<BR> dbfDataSource.stop();<BR> Value[] atts=null; <BR> atts = dbfDataSource.getRow(1); <BR><BR> FeatureTemp fea = new FeatureTemp();<BR> fea.setRowIndex(1);<BR> fea.setFieldNames(dbf_names);<BR> fea.setFieldTypes(types);<BR> fea.setValues(atts);<BR> return fea;<BR></DIV></BODY></HTML>