- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
将带有自定义对象的 HashMap 添加到 ArrayList 时遇到问题。这是 HashMap 定义:
static Map<Long, Supermarket> supermarkets = new HashMap<Long, Supermarket>();
static Map<Long, Product> products = new HashMap<Long, Product>();
这是 ArrayList 定义:
static ArrayList<HashMap> supemarketsAndProducts = new ArrayList<HashMap>();
我也尝试过使用具有相同结果的列表。Product 是一个创建产品对象的类。Supermarket 是创建超市对象的类。
问题出在向 ArrayList 添加元素时。我正在尝试这种方式:
supemarketsAndProducts.add(supermarkets);
supemarketsAndProducts.add(products);
我需要一个由这些 HashMap (超市和产品)组成的结构,因为我需要此类返回两个 HashMap 结构。我究竟做错了什么?有什么解决方案/解决方法可以返回我需要的 HashMap 吗?
感谢和问候。
编辑:这里是完整的代码(但它太长了:它是一个定制的 SAX 解析器,从另一个类调用,变量名称是西类牙语)。
package parsers;
import java.io.*;
import java.util.*;
import java.math.BigDecimal;
import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;
import org.xml.sax.XMLReader;
import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;
import org.xml.sax.helpers.*;
import org.xml.sax.SAXParseException;
import org.xml.sax.ErrorHandler;
import org.xml.sax.InputSource;
public class LectorXML extends DefaultHandler {
static Map<Long, Supermercado> supermercados = new HashMap<Long, Supermercado>();
static Map<Long, Producto> productos = new HashMap<Long, Producto>();
static List<Map> supermercadosYproductos = new ArrayList<Map>();
static Long numeroSupermercado = 0L;
static Long numeroProducto = 0L;
private final XMLReader xr;
boolean bfname = false;
boolean blname = false;
boolean bnname = false;
boolean bsalary = false;
boolean bs_id = false;
boolean bnombre = false;
boolean bdireccion = false;
boolean bpoblacion = false;
boolean bprovincia = false;
boolean blongitud = false;
boolean blatitud = false;
boolean bfavorito = false;
boolean btelefono = false;
boolean bp_id = false;
boolean bcodigobarras = false;
boolean bnombrep = false;
boolean bfabricante = false;
boolean bcategoria_1 = false;
boolean bcategoria_2 = false;
boolean bcategoria_3 = false;
boolean bprecio_1 = false;
boolean bfecha_1 = false;
boolean bprecio_2 = false;
boolean bfecha_2 = false;
boolean bsupermercado = false;
boolean bdireccion_supermercado = false;
boolean bpoblacion_supermercado = false;
boolean bcomprar = false;
public LectorXML() throws SAXException {
xr = XMLReaderFactory.createXMLReader();
xr.setContentHandler(this);
xr.setErrorHandler(this);
}
public void leer(final String archivoXML)
throws FileNotFoundException, IOException, SAXException {
FileReader fr = new FileReader(archivoXML);
xr.parse(new InputSource(fr));
}
// @Override
// public void startDocument() {
// System.out.println("Comienzo del Documento XML");
// }
// @Override
// public void endDocument() {
// System.out.println("Final del Documento XML");
// }
@Override
public void startElement(String uri, String name,
String qName, Attributes attributes) throws SAXException {
// System.out.println("tElemento: " + name);
// System.out.println("Start Element :" + qName);
for (int i = 0; i < attributes.getLength(); i++) {
// System.out.println("qName: ------ " + qName + " ---------");
// System.out.println("ttAtributo: "
// + attributes.getLocalName(i) + " = " + attributes.getValue(i));
if (attributes.getValue(i).equalsIgnoreCase("s_id")) {
bs_id = true;
}
if (attributes.getValue(i).equalsIgnoreCase("nombre")) {
// System.out.println("Nombre del supermercado: " + attributes.getValue(i));
bnombre = true;
}
if (attributes.getValue(i).equalsIgnoreCase("direccion")) {
// System.out.println("Dirección del supermercado: " + attributes.getValue(i));
bdireccion = true;
}
if (attributes.getValue(i).equalsIgnoreCase("poblacion")) {
// System.out.println("Población del supermercado: " + attributes.getValue(i));
bpoblacion = true;
}
if (attributes.getValue(i).equalsIgnoreCase("provincia")) {
// System.out.println("Provincia del supermercado: " + attributes.getValue(i));
bprovincia = true;
}
if (attributes.getValue(i).equalsIgnoreCase("longitud")) {
// System.out.println("Longitud del supermercado: " + attributes.getValue(i));
blongitud = true;
}
if (attributes.getValue(i).equalsIgnoreCase("latitud")) {
// System.out.println("Latitud del supermercado: " + attributes.getValue(i));
blatitud = true;
}
if (attributes.getValue(i).equalsIgnoreCase("favorito")) {
// System.out.println("¿Supermercado favorito?: " + attributes.getValue(i));
bfavorito = true;
}
if (attributes.getValue(i).equalsIgnoreCase("telefono")) {
// System.out.println("Teléfono del supermercado: " + attributes.getValue(i));
btelefono = true;
}
if (attributes.getValue(i).equalsIgnoreCase("p_id")) {
// System.out.println("Id del producto: " + attributes.getValue(i));
bp_id = true;
}
if (attributes.getValue(i).equalsIgnoreCase("codigobarras")) {
// System.out.println("Código de barras del producto: " + attributes.getValue(i));
bcodigobarras = true;
}
if (attributes.getValue(i).equalsIgnoreCase("nombrep")) {
// System.out.println("Nombre del producto: " + attributes.getValue(i));
bnombrep = true;
}
if (attributes.getValue(i).equalsIgnoreCase("fabricante")) {
// System.out.println("Fabricante del producto: " + attributes.getValue(i));
bfabricante = true;
}
if (attributes.getValue(i).equalsIgnoreCase("categoria_1")) {
// System.out.println("Categoría del producto: " + attributes.getValue(i));
bcategoria_1 = true;
}
if (attributes.getValue(i).equalsIgnoreCase("categoria_2")) {
// System.out.println("Categoría 2 del producto: " + attributes.getValue(i));
bcategoria_2 = true;
}
if (attributes.getValue(i).equalsIgnoreCase("categoria_3")) {
// System.out.println("Categoría 3 del producto: " + attributes.getValue(i));
bcategoria_3 = true;
}
if (attributes.getValue(i).equalsIgnoreCase("precio_1")) {
// System.out.println("Precio del producto: " + attributes.getValue(i));
bprecio_1 = true;
}
if (attributes.getValue(i).equalsIgnoreCase("fecha_1")) {
// System.out.println("Fecha del producto: " + attributes.getValue(i));
bfecha_1 = true;
}
if (attributes.getValue(i).equalsIgnoreCase("precio_2")) {
// System.out.println("Precio 2 del producto: " + attributes.getValue(i));
bprecio_2 = true;
}
if (attributes.getValue(i).equalsIgnoreCase("fecha_2")) {
// System.out.println("Fecha 2 del producto: " + attributes.getValue(i));
bfecha_2 = true;
}
if (attributes.getValue(i).equalsIgnoreCase("supermercado")) {
// System.out.println("Nombre del supermercado del producto: " + attributes.getValue(i));
bsupermercado = true;
}
if (attributes.getValue(i).equalsIgnoreCase("direccion_supermercado")) {
// System.out.println("Dirección del supermercado del producto: " + attributes.getValue(i));
bdireccion_supermercado = true;
}
if (attributes.getValue(i).equalsIgnoreCase("poblacion_supermercado")) {
// System.out.println(" Población del supermercado del producto: " + attributes.getValue(i));
bpoblacion_supermercado = true;
}
if (attributes.getValue(i).equalsIgnoreCase("comprar")) {
// System.out.println(" Comprar el producto? " + attributes.getValue(i));
bfavorito = true;
}
}
}
// @Override
// public void endElement(String uri, String name,
// String qName) throws SAXException {
// System.out.println("tFin Elemento: " + name);
// }
@Override
public void characters(char[] ch, int start, int length)
throws SAXException {
// System.out.println(new String(ch, start, length));
Supermercado supermercado = new Supermercado();
Producto producto = new Producto();
if (bs_id) {
String idSupermercado = new String(ch, start, length);
System.out.println("Id del supermercado: " + idSupermercado);
bs_id = false;
supermercado.supermercadoId = Long.parseLong(idSupermercado);
}
if (bnombre) {
String nombreSupermercado = new String(ch, start, length);
System.out.println("Nombre del supermercado: " + nombreSupermercado);
bnombre = false;
supermercado.nombre = nombreSupermercado;
}
if (bdireccion) {
String direccionSupermercado = new String(ch, start, length);
System.out.println("Dirección del supermercado: " + direccionSupermercado);
bdireccion = false;
supermercado.direccion = direccionSupermercado;
}
if (bpoblacion) {
String poblacionSupermercado = new String(ch, start, length);
System.out.println("Población del supermercado: " + poblacionSupermercado);
bpoblacion = false;
if (poblacionSupermercado.equalsIgnoreCase(""))
supermercado.poblacion = null;
else supermercado.poblacion = poblacionSupermercado;
}
if (bprovincia) {
String provinciaSupermercado = new String(ch, start, length);
System.out.println("Provincia del supermercado: " + provinciaSupermercado);
bprovincia = false;
supermercado.provincia = provinciaSupermercado;
}
if (blongitud) {
String longitudSupermercado = new String(ch, start, length);
System.out.println("Longitud del supermercado: " + longitudSupermercado);
blongitud = false;
if (longitudSupermercado.equalsIgnoreCase("0"))
supermercado.longitud = null;
else supermercado.longitud = Double.parseDouble(longitudSupermercado);
}
if (blatitud) {
String latitudSupermercado = new String(ch, start, length);
System.out.println("Latitud del supermercado: " + latitudSupermercado);
blatitud = false;
if (latitudSupermercado.equalsIgnoreCase("0"))
supermercado.latitud = null;
else supermercado.latitud = Double.parseDouble(latitudSupermercado);
}
if (bfavorito) {
String supermercadoFavorito = new String(ch, start, length);
System.out.println("Supermercado favorito? " + supermercadoFavorito);
bfavorito = false;
if (supermercadoFavorito.equals("0")) {
supermercado.favorito = false;
} else if (supermercadoFavorito.equals("1")) {
supermercado.favorito = true;
}
}
if (btelefono) {
String telefonoSupermercado = new String(ch, start, length);
System.out.println("Teléfono del supermercado: " + telefonoSupermercado);
btelefono = false;
if (telefonoSupermercado.equalsIgnoreCase("0"))
supermercado.telefono = null;
else supermercado.telefono = telefonoSupermercado;
}
if (bp_id) {
String idProducto = new String(ch, start, length);
System.out.println("Id del producto: " + idProducto);
bp_id = false;
producto.productoId = Long.parseLong(idProducto);
}
if (bcodigobarras) {
String codigoBarras = new String(ch, start, length);
System.out.println("Código de barras del producto: " + codigoBarras);
bcodigobarras = false;
if (codigoBarras.equalsIgnoreCase("0"))
producto.codigobarras = null;
else producto.codigobarras = codigoBarras;
}
if (bnombrep) {
String nombreProducto = new String(ch, start, length);
System.out.println("Nombre del producto: " + nombreProducto);
bnombrep = false;
producto.nombre = nombreProducto;
}
if (bfabricante) {
String fabricanteProducto = new String(ch, start, length);
System.out.println("Fabricante del producto: " + fabricanteProducto);
bfabricante = false;
if (fabricanteProducto.equalsIgnoreCase(""))
producto.fabricante = null;
else producto.fabricante = fabricanteProducto;
}
if (bcategoria_1) {
String categoria1 = new String(ch, start, length);
System.out.println("Categoría del producto: " + categoria1);
bcategoria_1 = false;
producto.categoria_1 = categoria1;
}
if (bcategoria_2) {
String categoria2 = new String(ch, start, length);
System.out.println("Categoría 2 del producto: " + categoria2);
bcategoria_2 = false;
if (categoria2.equalsIgnoreCase(""))
producto.categoria_2 = null;
else producto.categoria_2 = categoria2;
}
if (bcategoria_3) {
String categoria3 = new String(ch, start, length);
System.out.println("Categoría 3 del producto: " + categoria3);
bcategoria_3 = false;
if (categoria3.equalsIgnoreCase(""))
producto.categoria_3 = null;
else producto.categoria_3 = categoria3;
}
if (bprecio_1) {
String precio1 = new String(ch, start, length);
System.out.println("Precio del producto: " + precio1);
bprecio_1 = false;
if (precio1.equalsIgnoreCase("0"))
producto.precio_1 = null;
else producto.precio_1 = Double.parseDouble(precio1);
}
if (bfecha_1) {
String fecha1 = new String(ch, start, length);
System.out.println("Fecha del producto: " + fecha1);
bfecha_1 = false;
if (fecha1.equalsIgnoreCase("0"))
producto.fecha_1 = null;
else producto.fecha_1 = ConvertirFecha.conversion(fecha1);
}
if (bprecio_2) {
String precio2 = new String(ch, start, length);
System.out.println("Precio 2 del producto: " + precio2);
bprecio_2 = false;
if (precio2.equalsIgnoreCase("0"))
producto.precio_2 = null;
else producto.precio_2 = Double.parseDouble(precio2);
}
if (bfecha_2) {
String fecha2 = new String(ch, start, length);
System.out.println("Fecha 2 del producto: " + fecha2);
bfecha_2 = false;
if (fecha2.equalsIgnoreCase("0"))
producto.fecha_2 = null;
else producto.fecha_2 = ConvertirFecha.conversion(fecha2);
}
if (bsupermercado) {
String nombreSupermercadoProducto = new String(ch, start, length);
System.out.println("Nombre del supermercado del producto: " + nombreSupermercadoProducto);
bsupermercado = false;
producto.supermercado = nombreSupermercadoProducto;
}
if (bdireccion_supermercado) {
String direccionSupermercadoProducto = new String(ch, start, length);
System.out.println("Dirección del supermercado del producto: " + direccionSupermercadoProducto);
bdireccion_supermercado = false;
producto.direccion_supermercado = direccionSupermercadoProducto;
}
if (bpoblacion_supermercado) {
String poblacionSupermercadoProducto = new String(ch, start, length);
System.out.println("Población del supermercado del producto: " + poblacionSupermercadoProducto);
bpoblacion_supermercado = false;
if (poblacionSupermercadoProducto.equalsIgnoreCase(""))
producto.poblacion_supermercado = null;
else producto.poblacion_supermercado = poblacionSupermercadoProducto;
}
if (bcomprar) {
String comprarProducto = new String(ch, start, length);
System.out.println(" Comprar el producto? " + comprarProducto);
bcomprar = false;
if (comprarProducto.equals("0")) {
producto.comprar = false;
} else if (comprarProducto.equals("1")) {
producto.comprar = true;
}
}
if (supermercado.supermercadoId != null)
supermercados.put(numeroSupermercado, supermercado);
if (producto.productoId != null)
productos.put(numeroProducto, producto);
}
supermercadosYproductos.add(supermercados);
supermercadosYproductos.add(productos);
}
最佳答案
您必须使用通配符来掩盖您将不同的 map 添加到列表中的事实:
static List<Map<Long, ?>> supemarketsAndProducts = new ArrayList<>();
当然,当您从此列表中检索对象时,您不会拥有它的静态类型。这是不可能实现的。您需要执行未经检查的强制转换,这样您的类型安全就会消失。
关于java - 如何将带有自定义对象的 HashMap 添加到 ArrayList,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13376004/
我的一位教授给了我们一些考试练习题,其中一个问题类似于下面(伪代码): a.setColor(blue); b.setColor(red); a = b; b.setColor(purple); b
我似乎经常使用这个测试 if( object && object !== "null" && object !== "undefined" ){ doSomething(); } 在对象上,我
C# Object/object 是值类型还是引用类型? 我检查过它们可以保留引用,但是这个引用不能用于更改对象。 using System; class MyClass { public s
我在通过 AJAX 发送 json 时遇到问题。 var data = [{"name": "Will", "surname": "Smith", "age": "40"},{"name": "Wil
当我尝试访问我的 View 中的对象 {{result}} 时(我从 Express js 服务器发送该对象),它只显示 [object][object]有谁知道如何获取 JSON 格式的值吗? 这是
我有不同类型的数据(可能是字符串、整数......)。这是一个简单的例子: public static void main(String[] args) { before("one"); }
嗨,我是 json 和 javascript 的新手。 我在这个网站找到了使用json数据作为表格的方法。 我很好奇为什么当我尝试使用 json 数据作为表时,我得到 [Object,Object]
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我听别人说 null == object 比 object == null check 例如: void m1(Object obj ) { if(null == obj) // Is thi
Match 对象 提供了对正则表达式匹配的只读属性的访问。 说明 Match 对象只能通过 RegExp 对象的 Execute 方法来创建,该方法实际上返回了 Match 对象的集合。所有的
Class 对象 使用 Class 语句创建的对象。提供了对类的各种事件的访问。 说明 不允许显式地将一个变量声明为 Class 类型。在 VBScript 的上下文中,“类对象”一词指的是用
Folder 对象 提供对文件夹所有属性的访问。 说明 以下代码举例说明如何获得 Folder 对象并查看它的属性: Function ShowDateCreated(f
File 对象 提供对文件的所有属性的访问。 说明 以下代码举例说明如何获得一个 File 对象并查看它的属性: Function ShowDateCreated(fil
Drive 对象 提供对磁盘驱动器或网络共享的属性的访问。 说明 以下代码举例说明如何使用 Drive 对象访问驱动器的属性: Function ShowFreeSpac
FileSystemObject 对象 提供对计算机文件系统的访问。 说明 以下代码举例说明如何使用 FileSystemObject 对象返回一个 TextStream 对象,此对象可以被读
我是 javascript OOP 的新手,我认为这是一个相对基本的问题,但我无法通过搜索网络找到任何帮助。我是否遗漏了什么,或者我只是以错误的方式解决了这个问题? 这是我的示例代码: functio
我可以很容易地创造出很多不同的对象。例如像这样: var myObject = { myFunction: function () { return ""; } };
function Person(fname, lname) { this.fname = fname, this.lname = lname, this.getName = function()
任何人都可以向我解释为什么下面的代码给出 (object, Object) 吗? (console.log(dope) 给出了它应该的内容,但在 JSON.stringify 和 JSON.parse
我正在尝试完成散点图 exercise来自免费代码营。然而,我现在只自己学习了 d3 几个小时,在遵循 lynda.com 的教程后,我一直在尝试确定如何在工具提示中显示特定数据。 This code
我是一名优秀的程序员,十分优秀!