作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有一个 BookView.class,其私有(private)方法定义如下
public class BookView{
private boolean importBook(String epubBookPath){
//The function that adds books to database.
}
}
我正在尝试从不同的包调用此函数。我的代码是
protected void onPostExecute(String file_url) {
// dismiss the dialog after the file was downloaded
dismissDialog(progress_bar_type);
/*Now we add the book information to the sqlite file.*/
TextView textView=(TextView)findViewById(R.id.textView1);
String filename = textView.getText().toString();
String baseDir = Environment.getExternalStorageDirectory().getAbsolutePath();
String epubBookPath = baseDir+filename;
Log.i("epubBookPath:",epubBookPath); //No errors till here!
try {
Method m=BookView.class.getDeclaredMethod("importBook");
m.setAccessible(true);//Abracadabra
//I need help from here! How do i pass the epubBookPath to the private importBook method.
} catch (NoSuchMethodException e) {
e.printStackTrace();
}
Intent in = new Intent(getApplicationContext(),
CallEPubUIActivity.class);
startActivity(in);
}
编辑:
我在 jar 文件中找到了另一个公共(public)方法,它正在执行上述工作。
public void jsImportBook(String epubBookPath) {
if (!BookView.this.importBook(epubBookPath))
return;
BookView.this.createBookshelf();
}
最佳答案
如果您想这样做,您应该将其设为 public
或将其设为 public
包装方法。
如果那不可能,您可以想办法解决它,但这既丑陋又糟糕,您应该有真正充分的理由这样做。
public boolean importBook(String epubBookPath){
//The function that adds books to database.
}
或
public boolean importBookPublic(String epubBookPath){
return importBook(epubBookPath);
}
private boolean importBook(String epubBookPath){
//The function that adds books to database.
}
另请注意,如果您无法直接在第三方库中访问该方法,那么很可能就是这样。看看call hierarchy private
方法,看看是否找到一个 public
方法来调用 private
方法,并且也能满足您的需要。
库的设计方式通常是让 public
方法进行一些检查(给定的所有参数、经过身份验证等),然后将调用传递给 private
方法做实际工作。您几乎永远不想绕过这个过程。
关于java - 如何调用不同包中类的私有(private)方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16671801/
我是一名优秀的程序员,十分优秀!