gpt4 book ai didi

java - 如何调用不同包中类的私有(private)方法

转载 作者:行者123 更新时间:2023-12-01 06:26:48 26 4
gpt4 key购买 nike

有一个 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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com