📄 formfields.java
字号:
// Jericho HTML Parser - Java based library for analysing and manipulating HTML
// Version 3.0
// Copyright (C) 2007 Martin Jericho
// http://jerichohtml.sourceforge.net/
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of either one of the following licences:
//
// 1. The Eclipse Public License (EPL) version 1.0,
// included in this distribution in the file licence-epl-1.0.html
// or available at http://www.eclipse.org/legal/epl-v10.html
//
// 2. The GNU Lesser General Public License (LGPL) version 2.1 or later,
// included in this distribution in the file licence-lgpl-2.1.txt
// or available at http://www.gnu.org/licenses/lgpl.txt
//
// This library is distributed on an "AS IS" basis,
// WITHOUT WARRANTY OF ANY KIND, either express or implied.
// See the individual licence texts for more details.
package net.htmlparser.jericho;
import java.util.*;
/**
* Represents a collection of {@link FormField} objects.
* <p>
* This class provides the main interface for the analysis and manipulation of {@linkplain FormControl form controls}.
* A <code>FormFields</code> object is a collection of {@link FormField} objects, with each form field consisting of
* a group of {@linkplain FormControl form controls} having the same {@linkplain FormControl#getName() name}.
* <p>
* The functionality provided by this class can be used to accomplish two main tasks:
* <ol>
* <li style="margin-bottom: 1.5em">
* Modify the <a href="FormControl.html#SubmissionValue">submission values</a> of the constituent form controls
* for subsequent output in an {@link OutputDocument}.
* <p>
* The methods available for this purpose are:<br />
* {@link #getValues(String) List<String> getValues(String fieldName)}<br />
* {@link #getDataSet() Map<String,String[]> getDataSet()}<br />
* {@link #clearValues() void clearValues()}<br />
* {@link #setDataSet(Map) void setDataSet(Map<String,String[]>)}<br />
* {@link #setValue(String,String) boolean setValue(String fieldName, String value)}<br />
* {@link #addValue(String,String) boolean addValue(String fieldName, String value)}<br />
* <p>
* Although the {@link FormField} and {@link FormControl} classes provide methods for directly modifying
* the submission values of individual form fields and controls, it is generally recommended to use the interface provided by this
* (the <code>FormFields</code>) class unless there is a specific requirement for the lower level functionality.
* <p>
* The <a href="FormControl.html#DisplayCharacteristics">display characteristics</a> of individual controls,
* such as whether the control is {@linkplain FormControl#setDisabled(boolean) disabled}, replaced with a simple
* {@linkplain FormControlOutputStyle#DISPLAY_VALUE value}, or {@linkplain FormControlOutputStyle#REMOVE removed} altogether,
* can only be set on the individual {@link FormControl} objects.
* See below for information about retrieving a specific <code>FormControl</code> object from the <code>FormFields</code> object.
* <li>
* Convert data from a <a target="_blank" href="http://www.w3.org/TR/html401/interact/forms.html#form-data-set">form data set</a>
* (represented as a <a href="#FieldDataSet">field data set</a>) into a simple array format,
* suitable for storage in a tabular format such as a database table or <code>.CSV</code> file.
* <p>
* The methods available for this purpose are:<br />
* {@link #getColumnLabels() String[] getColumnLabels()}<br />
* {@link #getColumnValues(Map) String[] getColumnValues(Map)}<br />
* {@link #getColumnValues() String[] getColumnValues()}<br />
* <p>
* The {@link Util} class contains a method called {@link Util#outputCSVLine(Writer,String[]) outputCSVLine(Writer,String[])}
* which writes the <code>String[]</code> output of these methods to the specified <code>Writer</code> in <code>.CSV</code> format.
* <p>
* The implementation of these methods makes use of certain <a href="FormField.html#DataStructureProperties">properties</a>
* in the {@link FormField} class that describe the structure of the data in each field.
* These properties can be utilised directly in the event that a
* <a target="_blank" href="http://www.w3.org/TR/html401/interact/forms.html#form-data-set">form data set</a> is to be converted
* from its <a href="FormFields.html#FieldDataSet">normal format</a> into some other type of data structure.
* </ol>
* <p>
* To access a specific {@link FormControl} from a <code>FormFields</code> object, use:
* <ul style="margin-top: 0px">
* <li><code>formFields.</code>{@link #get(String) get(fieldName)}<code>.</code>{@link FormField#getFormControl() getFormControl()}
* if the control is the only one with the specified {@linkplain FormControl#getName() name}, or
* <li><code>formFields.</code>{@link #get(String) get(fieldName)}<code>.</code>{@link FormField#getFormControl(String) getFormControl(predefinedValue)}
* to retrieve the control having the speficied {@linkplain FormControl#getPredefinedValue() predefined value}
* if it is part of a {@linkplain FormField field} containing multiple controls.
* </ul>
* <p>
* The term <i><a name="FieldDataSet">field data set</a></i> is used in this library to refer to a data structure consisting of
* a set of names (in lower case), each mapped to one or more values.
* Generally, this is represented by a data type of <code>java.util.Map<String,String[]></code>,
* with the keys (names) being of type <code>String</code> and the values represented by an array containing one or more items of type <code>String</code>.
* A field data set can be used to represent the data in an HTML
* <a target="_blank" href="http://www.w3.org/TR/html401/interact/forms.html#form-data-set">form data set</a>.
* <p>
* <code>FormFields</code> instances are obtained using the {@link #FormFields(Collection formControls)} constructor
* or by calling the {@link Segment#getFormFields()} method.
* <p>
* The case sensitivity of form field names is determined by the static
* {@link Config#CurrentCompatibilityMode}<code>.</code>{@link Config.CompatibilityMode#isFormFieldNameCaseInsensitive() FormFieldNameCaseInsensitive} property.
* <p>
* <b>Examples:</b>
* <ol>
* <li>
* Write the data received from in the current <code>ServletRequest</code> to a <code>.CSV</code> file,
* and then display the form populated with this data:
* <p><pre>
* Source source=new Source(htmlTextOfOriginatingForm);
* FormFields formFields=source.getFormFields();
*
* File csvOutputFile=new File("FormData.csv");
* boolean outputHeadings=!csvOutputFile.exists();
* Writer writer=new FileWriter(csvOutputFile,true);
* if (outputHeadings) Util.outputCSVLine(writer,formFields.getColumnLabels());
* Util.outputCSVLine(writer,formFields.getColumnValues(servletRequest.getParameterMap()));
* writer.close();
*
* formFields.setDataSet(servletRequest.getParameterMap());
* OutputDocument outputDocument=new OutputDocument(source);
* outputDocument.replace(formFields);
* outputDocument.writeTo(servletResponse.getWriter());</pre>
* <p>See also the sample program FormFieldCSVOutput.<br /><br />
* <li>Replace the initial values of controls in the form named "MyForm" with new values:
* <p><pre>
* Source source=new Source(htmlText);
* Element myForm=null;
* List formElements=source.getAllElements(Tag.FORM);
* for (Iterator i=formElements.iterator(); i.hasNext();) {
* Element formElement=(Element)i.next();
* String formName=formElement.getAttributes().getValue("name");
* if ("MyForm".equals(formName)) {
* myForm=form;
* break;
* }
* }
* FormFields formFields=myForm.getFormFields();
* formFields.clearValues(); // clear any values that might be set in the source document
* formFields.addValue("Name","Humphrey Bear");
* formFields.addValue("MailingList","A");
* formFields.addValue("MailingList","B");
* formFields.addValue("FavouriteFare","honey");
* OutputDocument outputDocument=new OutputDocument(source);
* outputDocument.replace(formFields);
* String newHtmlText=outputDocument.toString();</pre>
* <p>See also the sample program FormFieldSetValues.<br /><br />
* <li>Change the display characteristics of individual controls:
* <p><pre>
* Source source=new Source(htmlText);
* FormFields formFields=source.getFormFields();
* // disable some controls:
* formFields.get("Password").getFormControl().setDisabled(true);
* FormField mailingListFormField=formFields.get("MailingList");
* mailingListFormField.setValue("C");
* mailingListFormField.getFormControl("C").setDisabled(true);
* mailingListFormField.getFormControl("D").setDisabled(true);
* // remove some controls:
* formFields.get("button1").getFormControl().setOutputStyle(FormControlOutputStyle.REMOVE);
* FormControl rhubarbFormControl=formFields.get("FavouriteFare").getFormControl("rhubarb");
* rhubarbFormControl.setOutputStyle(FormControlOutputStyle.REMOVE);
* // set some controls to display value:
* formFields.setValue("Address","The Lodge\nDeakin ACT 2600\nAustralia");
* formFields.get("Address").getFormControl().setOutputStyle(FormControlOutputStyle.DISPLAY_VALUE);
* FormField favouriteSportsFormField=formFields.get("FavouriteSports");
* favouriteSportsFormField.setValue("BB");
* favouriteSportsFormField.addValue("AFL");
* favouriteSportsFormField.getFormControl().setOutputStyle(FormControlOutputStyle.DISPLAY_VALUE);
* OutputDocument outputDocument=new OutputDocument(source);
* outputDocument.replace(formFields); // adds all segments necessary to effect changes
* String newHtmlText=outputDocument.toString();</pre>
* <p>See also the sample program FormControlDisplayCharacteristics.<br /><br />
* </ol>
* @see FormField
* @see FormControl
*/
public final class FormFields extends AbstractCollection<FormField> {
private final LinkedHashMap<String,FormField> map=new LinkedHashMap<String,FormField>();
private final ArrayList<FormControl> formControls=new ArrayList<FormControl>();
/**
* Constructs a new <code>FormFields</code> object consisting of the specified {@linkplain FormControl form controls}.
* @param formControls a collection of {@link FormControl} objects.
* @see Segment#getFormFields()
*/
public FormFields(final Collection<FormControl> formControls) {
// Passing "this" as a parameter inside a constructor used to cause some strange problems back in java 1.0,
// but it seems to work here and there is no explicit mention in the Java language spec about any potential problems.
// The alternative is an ugly static FormFields constructFrom(List formControls) method.
for (FormControl formControl : formControls) {
if (formControl.getName()!=null && formControl.getName().length()!=0) {
formControl.addToFormFields(this);
this.formControls.add(formControl);
}
}
}
/**
* Returns the number of <code>FormField</code> objects.
* @return the number of <code>FormField</code> objects.
*/
public int getCount() {
return map.size();
}
/**
* Returns the number of <code>FormField</code> objects.
* <p>
* This is equivalent to {@link #getCount()},
* and is necessary to for the implementation of the <code>java.util.Collection</code> interface.
*
* @return the number of <code>FormField</code> objects.
*/
public int size() {
return getCount();
}
/**
* Returns the <code>FormField</code> with the specified {@linkplain FormField#getName() name}.
* <p>
* The case sensitivity of the <code>fieldName</code> argument is determined by the static
* {@link Config#CurrentCompatibilityMode}<code>.</code>{@link Config.CompatibilityMode#isFormFieldNameCaseInsensitive() FormFieldNameCaseInsensitive} property.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -