Tagged Questions
The getmethod tag has no wiki summary.
12
votes
2answers
16k views
How do I add query parameters to a GetMethod (using Java commons-httpclient)?
Using Apache's commons-httpclient for Java, what's the best way to add query parameters to a GetMethod instance? If I'm using PostMethod, it's very straightforward:
PostMethod method = new ...
5
votes
5answers
191 views
Easy way to get all Enum values in c#
I've tried a little Program... I want to run a program and see all method names in c# class...
Here is the code
class Program
{
public int adf()
{
return 0;
}
static void ...
5
votes
2answers
388 views
Filtering out auto-generated methods (getter/setter/add/remove/.etc) returned by Type.GetMethods()
I use Type.GetMethods(BindingFlags.Instance | BindingFlags.Static | BindingFlags.Public | BindingFlags.NonPublic) to retrieve an array of methods for a given type.
The problem is the returned ...
3
votes
1answer
263 views
What is the overhead of reflection in GetMethods
I just refactored a common piece of code in several parsers I have written.
The code is used to automatically discover method implementations and it comes in quite handy to extend the existing parsers ...
3
votes
4answers
545 views
getDeclaredField(String) vs. getMethod(String) for private fields in a bean
I have a bean whose properties I want to access via reflection. I receive the property names in String form. The beans have getter methods for their private fields.
I am currently getting the field ...
2
votes
2answers
137 views
Getting The Method That A Method Was Called From?
Is it possible to determine the calling method name "Eat Pizza" in PostError?
I guess I could pass "EatPizza" as one of the arguments, but that would require changes each time the method name changes ...
1
vote
2answers
98 views
What does the ? mean in “format(List<? extends NameValuePair>”
I'm following the indications on this post to create a a parametrized URI for an Http GetMethod (http://some.domain/path?param1=value1¶m2=value2) and I ran into a new issue.
I have this code:
...
1
vote
2answers
61 views
Determining available operators at runtime
I would like to be able to retrieve the available operators for an object at runtime, possibly in a similar way as the getMethod() call.
In particular, I need to be able to call the ...
1
vote
3answers
138 views
Passing multidimensional array back through access members
I have a class "foo" that has a multi dimensional array and need to provide a copy of the array through a getArray member. Is there a nice way of doing this when the array is dynamically created so I ...
0
votes
3answers
86 views
jQuery AJAX GET html data IE8 not working
This is the code but it's not working on IE8 & 7 (IE9 , chrome,firefox, safari,opera are all ok). I have tried a lot of things (meta utf-8 code, php header code, taking alerts, cache:false).What ...
0
votes
0answers
60 views
MethodInfo for String.First always null or ambiguous [closed]
Possible Duplicate:
GetMethod for generic method
I am trying to get the MethodInfo for the string.First() extension method. However, I am always receiving Ambiguos Match found error or ...
0
votes
0answers
39 views
how to invoke a method from other class using another class
i am new in java programming. i have a little problem with the program i am creating. Here is the situation: I have a mainFrameClass, jDesktopPaneClass, and 2 internalFrame class. i instantiated the ...
0
votes
2answers
128 views
json_encode combined with $_GET (PHP & Javascript)
I need to pass a JSON array into a webpage URL so I do
$url = 'page.php?id=' . json_encode($array);
which becames
$url = 'pages.php?id=["1", "2", "3"]';
And then, inside page.php which is ...
0
votes
3answers
155 views
how to get method by reflection's getmethod techenology and method is overrided and paramters has reference self-defined paramter
case as followed:
in the project a
public class X1
{
public string Name="X1";
}
public class X2
{
public string GetName(string name)
{
return "";
}
public string GetName(string ...
0
votes
3answers
315 views
problem with arguments when running a jar using reflection
I try to run a jar using reflection with the the getMethod and invoke method but ran in trouble with the arguments passed to the invoke method:
String mainClass = myprog.Run;
String[] args = new ...
0
votes
2answers
213 views
disable repeated call using getmethod() in php when page is refreshed
I'm new to PHP and in order to learn the language and the concepts I'm working on a e-commerce website with a shopping cart, etc.
In this site I have items, when an item is clicked, the id of the item ...
0
votes
4answers
718 views
getClass().getMethod(“name”, unkown)
For a really abstract application I am creating, I need to call methods without knowing their parameter types and only knowing the parameters in a String shape.
Let say I have the method;
...
-2
votes
2answers
55 views
how to deal with delete buttons in php?
I want to know what is the best way to handle delete or edit buttons? So let's say from a comment box, should I use post or get method for this and then make some validations in the page that is ...