2012-11-28 95 views
-1

喜的朋友,我想知道在哪里安装文件所在Android手机上的文件。 亲爱的我无法在我的手机上找到这些文件。在安装位置上的Android手机

我使用三星galaxys2。

任何一个试图储存我想看到我的细胞后,我通过我的手机上运行我的代码在我的手机上运行我的代码,而不是仿真IM的文本文件中的数据和文件。

对不起坏英语。

  public void actionPerformed(ActionEvent e) { 
       // TODO Auto-generated method stub 


     if(windowOpen == false) { 
     Connection con = null; 
     java.sql.Statement stmt = null; 
     ResultSet rs = null; 
     JFrame f = new JFrame(); 
     f.setTitle("Delete Sub_Category :"); 
     f.setSize(600,200); 

     model = new DefaultTableModel(datas,titles); 
     table = new JTable(model); 

     JScrollPane scrollPane = new JScrollPane(table);  
     f.getContentPane().add(scrollPane, BorderLayout.CENTER); 
     JPanel panel = new JPanel(new FlowLayout(FlowLayout.RIGHT)); 
     JButton deleteButton = new JButton("Delete"); 
     JButton cancelButton = new JButton("Cancel"); 
     f.getContentPane().add(panel,BorderLayout.SOUTH); 
     panel.add(deleteButton); 
     panel.add(cancelButton); 

对不起,这不是我的代码我无法发送我的问题洙我张贴这样。 请帮助我 在此先感谢

+0

史诗失败..这个问题对我来说太神秘..:d。您可能想看到http://en.wikipedia.org/wiki/Punctuation –

回答

0

启动形式API等级8,你可以允许外部存储即安装了应用程序,设备的SD card.This是可选功能中,你可以声明为您的应用与android:installLocation清单属性。

如果你不声明这个属性,你的应用程序将在内部存储只安装,它不能被移动到外部存储容量。内部位置是/数据/应用/ yourapplicationsname。

我也有在那里我想你可以轻松解决你的problem.the链接如下链接: - Important Link for your question

相关问题