Ted Yu
2013-12-31 15:16:11 UTC
Hi,
In a class A there is another class:
static final class LimitedInputStream extends FilterInputStream {
private int limit;
LimitedInputStream(InputStream in, int limit) {
How can I access its ctor through reflection ?
Thanks
In a class A there is another class:
static final class LimitedInputStream extends FilterInputStream {
private int limit;
LimitedInputStream(InputStream in, int limit) {
How can I access its ctor through reflection ?
Thanks