summaryrefslogtreecommitdiff
path: root/bkucommon/src/main/java/at/gv/egiz/bku/binding
diff options
context:
space:
mode:
Diffstat (limited to 'bkucommon/src/main/java/at/gv/egiz/bku/binding')
-rw-r--r--bkucommon/src/main/java/at/gv/egiz/bku/binding/XWWWFormUrlInputIterator.java34
1 files changed, 19 insertions, 15 deletions
diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/binding/XWWWFormUrlInputIterator.java b/bkucommon/src/main/java/at/gv/egiz/bku/binding/XWWWFormUrlInputIterator.java
index f60b42b3..9279130d 100644
--- a/bkucommon/src/main/java/at/gv/egiz/bku/binding/XWWWFormUrlInputIterator.java
+++ b/bkucommon/src/main/java/at/gv/egiz/bku/binding/XWWWFormUrlInputIterator.java
@@ -83,23 +83,25 @@ public class XWWWFormUrlInputIterator implements Iterator<FormParameter> {
if (done) {
return false;
}
- if (currentParameter != null) {
- // we have to disconnect the current parameter
- // to look for further parameters
- try {
+ try {
+ if (currentParameter != null) {
+ // we have to disconnect the current parameter
+ // to look for further parameters
currentParameter.formParameterValue.disconnect();
- // fill buffer if empty
- if (pos >= count) {
- if ((count = in.read(buf)) == -1) {
- // done
- done = true;
- return false;
- }
- pos = 0;
+ }
+ // fill buffer if empty
+ if (pos >= count) {
+ if ((count = in.read(buf)) == -1) {
+ // done
+ done = true;
+ return false;
}
- } catch (IOException e) {
- deferredIOException = e;
+ pos = 0;
}
+ } catch (IOException e) {
+ deferredIOException = e;
+ // return true to be able to report error
+ return true;
}
return true;
}
@@ -108,7 +110,9 @@ public class XWWWFormUrlInputIterator implements Iterator<FormParameter> {
public FormParameter next() {
if (hasNext()) {
// skip separator
- pos++;
+ if (buf[pos] == PARAM_SEP) {
+ pos++;
+ }
currentParameter = new XWWWFormUrlEncodedParameter();
return currentParameter;
} else {