1312
votes
39answers
493k views

RegEx match open tags except XHTML self-contained tags

I need to match all of these opening tags: <p> <a href="foo"> But not these: <br /> <hr class="foo" /> I came up with this and wanted to make sure I've got it right. I am ...
306
votes
18answers
98k views

What can I use to profile C++ code in Linux?

I have a C++ application I'm in the process of optimizing. What tool can I use to pinpoint my slow code?
179
votes
18answers
19k views

How to avoid Java Code in JSP-Files?

I'm new to Java EE and I know that something like the following three lines <%= x+1 %> <%= request.getParameter("name") %> <%! counter++; %> is an oldschool way of coding and in ...
67
votes
6answers
21k views

Alternatives to gprof

What other programs do the same thing as gprof?
601
votes
29answers
259k views

Get query string values in JavaScript

Is there a plugin-less way of retrieving query string values via jQuery (or without)? If so, how, and if not what plugin do you recommend?
292
votes
17answers
157k views

What are the best JVM settings for Eclipse? [closed]

What are the best JVM settings you have found for running Eclipse?
248
votes
2answers
116k views

How to use java.net.URLConnection to fire and handle HTTP requests?

This subject is pretty often asked here and the Sun Oracle tutorial is too concise about the subject. So I thought, let's post a CW question and answer about this so that it can if necessary be ...
133
votes
17answers
122k views

Android: Strange out of memory issue while loading an image to a Bitmap object

I am not sure where to start to explain this one. I have a list view with a couple image buttons on each row. When you click the list row, it launches a new activity. If you review some of my other ...
632
votes
20answers
75k views

How do JavaScript closures work?

Like the old Albert said: "If you can't explain it to a six-year old, you really don't understand it yourself.”. Well, I tried to explain JavaScript closures to a 27-year old friend and completely ...
326
votes
28answers
77k views

Is Java pass-by-reference?

I always thought Java was pass-by-reference, however I've seen a couple of blog posts (e.g. this blog) that claim it's not. I don't think I understand the distinction they're making. Could someone ...
198
votes
15answers
41k views

What are valid values for the id attribute in HTML?

When creating the id attributes for HTML elements, what rules are there for the value?
17
votes
2answers
4k views

Gui problem after rewriting to MVC

I'm practicing MVC style programming. I have a Mastermind game in a single file, working with no problems (maybe apart of the fact that "Check" button is invisible at start). ...
30
votes
2answers
23k views

How to upload files in JSP/Servlet?

How can I parse an uploaded file using Apache Common FileUpload? I tried this: FileItemFactory factory = new DiskFileItemFactory(); ServletFileUpload upload = new ServletFileUpload(factory); List ...
68
votes
4answers
11k views

How do servlets work? Instantiation, session variables and multithreading

Suppose, I have a webserver which holds numerous servlets. For information passing among those servlets I am getting the servlet context and setting session variables. Now, if 2 or more users send ...
331
votes
34answers
75k views

How-to articles for iPhone development and Objective-C

I am looking for an introduction into developing for the iPhone. Any recommendation? I do not speak Objective-C either, so tutorials on that would not hurt either.
155
votes
9answers
10k views

Can you provide some examples of why it is hard to parse XML and HTML with a regex?

One mistake I see people making over and over again is trying to parse XML or HTML with a regex. Here are a few of the reasons parsing XML and HTML is hard: People want to treat a file as a sequence ...
266
votes
6answers
51k views

event.preventDefault() vs. return false

When I want to prevent other event handlers from executing after a certain event is fired, I can use one of two techniques. I'll use jQuery in the examples, but this applies to plain-JS as well: #1 ...
89
votes
11answers
30k views

Robust, Mature HTML Parser for PHP

Are there any robust and mature HTML parsers available for PHP? A quick skimming of PEAR didn't turn anything up (lots of classes for generating HTML, not so much for consuming), and Google taught me ...
342
votes
20answers
38k views

JavaScript === vs == : Does it matter which “equal” operator I use?

I'm using JSLint to go through some horrific JavaScript at work and it's returning a huge number of suggestions to replace == with === when doing things like comparing idSele_UNVEHtype.value.length == ...
7
votes
7answers
2k views

Grabbing the href attribute of an A element

Trying to find the links on a page. my regex is: /<a\s[^>]*href=(\"\'??)([^\"\' >]*?)[^>]*>(.*)<\/a>/ but seems to fail at <a title="this" href="that">what?</a> ...
174
votes
19answers
72k views

Overriding equals and hashCode in Java

What issues / pitfalls must be considered when overriding equals and hashCode?
17
votes
5answers
7k views

How to use Servlets and Ajax?

I'm very new to web apps and Servlets and I have the following question: Whenever I print something inside the servlet and call it by the webbrowser, it returns a new page containing that text. Is ...
301
votes
18answers
180k views

How to copy to the clipboard in JavaScript?

What is the best way to copy text to the clipboard? (multi-browser) I have tried: function copyToClipboard(text) { if (window.clipboardData) // Internet Explorer { ...
62
votes
5answers
25k views

regular expression pattern not matching anywhere in string

I am trying to match <input> type “hidden” fields using this pattern: /<input type="hidden" name="([^"]*?)" value="([^"]*?)" />/ This is sample form data: <input type="hidden" ...
184
votes
19answers
188k views

How to call SOAP web service with Android

I am having a lot of trouble finding good information on how to call a standard SOAP/WSDL web service with Android. All I've been able to find are either very convoluted documents and references to ...
63
votes
3answers
9k views

Design Patterns web based applications

I am designing a simple web based application. I am new to this web based domain.I needed your advice regarding the design patterns like how responsibility should be distributed among Servlets, ...
323
votes
23answers
178k views

A better Java JSON library? [closed]

Can anyone recommend a good Java JSON library (better than the one from http://json.org/)? I've also found JSON-lib, which definitely looks like an improvement, but I'm wondering if there is anything ...
27
votes
3answers
4k views

Look and feel in java

I am developing an desktop application for my personal use. I use Java as programming language and I use Swing to develop GUI. I need some beautiful look and feel. How can I do it in Java or with any ...
253
votes
17answers
196k views

How can I upload files asynchronously with jQuery?

I would like to upload a file asynchronously with JQuery. This is my HTML: <span>File</span> <input type="file" id="file" name="file" size="10"/> <input id="uploadbutton" ...
129
votes
26answers
61k views

How can I obfuscate JavaScript?

I want to make a JavaScript application that's not open source, and thus have two questions: What's the best way to obfuscate the code? What's the best way to obfuscate the strings themselves within ...
14
votes
1answer
9k views

How to filter the jqGrid data NOT using the built in search/filter box

I want users to be able to filter grid data without using the intrinsic search box. I have created two input fields for date (from and to) and now need to tell the grid to adopt this as its filter ...
12
votes
5answers
15k views

How do I import the javax.servlet API in my Eclipse project?

I want to develop with Servlets in Eclipse, but it says that the package javax.servlet cannot be resolved. How can I add javax.servlet package to my Eclipse project?
6
votes
4answers
867 views

About swing and JTable

I want to add JTable into JPanel whose layout is null. JPanel contains other components. I have to add JTable at proper position. Please answer me about it. Am not much aware about Java.
56
votes
9answers
9k views

Java web development, what skills do I need? [closed]

I want to learn, at least at a basic level, how to build Java web applications (coming from a .NET background). Meaning, I would like to be able to build, deploy a simple CMS type application from ...
72
votes
5answers
22k views

What is the difference between JSF, Servlet and JSP?

Is JSP = Servlet? And JSF = Pre-build UI based JSP (like asp.net web control)?
236
votes
8answers
22k views

Why don't self-closing script tags work?

What is the reason browsers do not correctly recognize: <script src="foobar.js" /> // self-closing script tag Only this is recognized: <script src="foobar.js"></script> Is it ...
334
votes
10answers
56k views

JavaScript: var functionName = function() {} vs function functionName() {}

I've recently started maintaining someone else's JavaScript code. I'm fixing bugs, adding features and also trying to tidy up the code and make it more consistent. The previous developer uses two ...
203
votes
19answers
142k views

How to manage a redirect request after a jQuery Ajax call

Im using $.post() to call a Servlet using Ajax and then use the resulting HTML fragment to replace a div element in the User's current page. However, if the session timeouts the server sends a ...
220
votes
5answers
65k views

Abort Ajax requests using jQuery

Using jQuery, how can I cancel/abort an Ajax request that I have not yet received the response from?
56
votes
11answers
6k views

How do I write a correct micro-benchmark in Java?

As the title says. How do you write (and run) a correct micro-benchmark in Java? I'm looking here for code samples and comments illustrating various things to think about. Example: Should the ...
57
votes
0answers
8k views

How to parse HTML with PHP? [closed]

Possible Duplicate: How to parse and process HTML with PHP? Suggestion for a reference question. Stack Overflow has dozens of "How to parse HTML" questions coming in every day. However, ...
155
votes
19answers
101k views

Convert form data to JS object with jQuery

How do I convert all elements of my form to a JS object? I'd like to have some way of automatically building a JS object from my form, without having to loop over each element. I do not want a ...
208
votes
7answers
17k views

.prop() vs .attr()

Ok. So jQuery 1.6 has the new function prop(). $(selector).click(function(){ //instead of: this.getAttribute('style'); //do i use: $(this).prop('style'); //or: ...
265
votes
12answers
205k views

Serializing to JSON in jQuery

I need to serialize an object to JSON. I'm using jQuery. Is there a "standard" way to do this? My specific situation: I have an array defined something like this: var countries = new Array(); ...
8
votes
1answer
399 views

The Use of Multiple JFrames, Good/Bad Practice?

I'm developing an application which displays images, and plays sounds from a database. I'm trying to decide, whether to use a separate JFrame to add Images to the Database from the GUI. I'm just ...
518
votes
26answers
141k views

What is the most efficient way to clone a JavaScript object?

What is the most efficient way to clone a JavaScript object? I've seen: obj = eval(uneval(o)); but that's not cross platform (FF only). I've done (in Mootools 1.2) things like this: obj = ...
221
votes
20answers
77k views

Best css reset

I'm looking for a css reset kit, but I never used one before. So which kits its out there, and whats your experiences regarding these kits? And, is its any different between these kits, something you ...
28
votes
6answers
10k views

Why JSF calls getters multiple times

Let's say I specify an outputText component like this: <h:outputText value="#{ManagedBean.someProperty}"/> If I print a log message when the getter for someProperty is called and load the ...
65
votes
16answers
11k views

Is JavaScript's Math broken?

0.1 + 0.2 == 0.3 // returns false 0.1 + 0.2 // returns 0.30000000000000004 Any ideas why this happens?
83
votes
17answers
67k views

Why is using the JavaScript eval function a bad idea?

The eval function is a powerful and easy way to dynamically generate code, so what are the caveats?

1 2 3 4 5 3494