从txt文件读取到hashmap

时间:2014-01-17 21:07:41

标签: java hashmap

如何从文本文件中读取字符串和int(整数)并更新HashMap中的值?文件包含:

Bitoque:2

Pão(cesta de 2):1

blahblahblah:1

这是我到目前为止所做的:

  BufferedReader buffer = new BufferedReader(new FileReader("pedidos.txt"));

    String linha;

    int k = 1;
    String valor = null;
    try {
        while ((linha = buffer.readLine()) != null) {
            String[] Linha = linha.split(":");

            System.out.print(k + "-");
            k++;
            Linha[0] = Linha[0].trim();
            Linha[1] = Linha[1].trim();
            //prod.put(Linha[0], Integer.parseInt(Linha[1]));

            for (int i = 0; i < Linha.length; i++) {
                System.out.println(Linha[i] + " ");
                i++;
                int f = 0;
                if (f > linha.length()) {
                    System.out.println("Não existem pedidos");
                }}}

这是我最初的HashMap:

HashMap<String, Integer> prod = new HashMap<String, Integer>();
    prod.put("Queijo de Cabra", 0);
    prod.put("Queijo Fresco", 0);
    prod.put("Pão (cesta de 2)", 0);
    //PRATOS            
    prod.put("Bacalhau à Zé do Pipo", 0);
    prod.put("Bitoque", 0);
    prod.put("Salada de atum", 0);
    prod.put("Salada de Nabiças", 0);
    prod.put("Lasanha de vegetais", 0);
    //BEBIDAS            
    prod.put("Café", 0);
    prod.put("Coca-cola(lata)", 0);
    prod.put("7Up(lata)", 0);
    prod.put("Água do Luso 1.5L", 0);
    prod.put("Água do Luso ", 0);
    prod.put("Vinho da casa 1L (branco)", 0);
    prod.put("Vinho da casa 1L (tinto)", 0);
    //SOBREMESAS            
    prod.put("Bolo de bolacha", 0);
    prod.put("Banana", 0);
    prod.put("Melão", 0);
    //OUTROS            
    prod.put("Pau de canela", 0);
    prod.put("Bagaço", 0);
    prod.put("Pastilhas Gorila", 0);

如何为hashmap创建类别?

3 个答案:

答案 0 :(得分:0)

检查出来:

import java.util.HashMap;
import java.util.Map.Entry;

public class main {

public static void main(String[] args) throws InterruptedException {
    main m = new main();
}

public void usingMaps() {
    String values = "something: 1";

    String[] parts = values.split(":");
    String key = parts[0].trim();
    Integer value = Integer.parseInt(parts[1].trim());
    HashMap<String, Integer> map = new HashMap<String, Integer>();

    map.put(key, value);

    for (Entry<String, Integer> entry : map.entrySet()) {
        System.out.println(entry.getKey());
        System.out.println(entry.getValue());
    }
}

public main() {
    usingMaps();
}
}

输出:

something
1

答案 1 :(得分:0)

作为另一种方法,您可以使用简单的代码。所以,简单的例子就像下一个:

的test.txt

test1:1
test2:2
test3:3

代码:

Properties properties = new Properties();
properties.load(Main.class.getResourceAsStream("test.txt"));

Map map = properties;

Map<String, Integer> testMap = new HashMap<String, Integer>();
testMap.put("test0",11);
testMap.put("test00",111);

testMap.putAll(map);

System.out.println(testMap);

结果:

{test00=111, test1=1, test0=11, test2=2, test3=3}

已编辑以模拟您拥有的代码。

答案 2 :(得分:0)

哦~~!我想我现在理解你的问题了:你在hashmap中有初始值,你想要通过文本文件中的值修改值(例如,如果文本文件说你有两个东西)你想把那个东西的数量增加2?)

如果这就是你想要的,那你就非常接近:

替换这个:

//prod.put(Linha[0], Integer.parseInt(Linha[1]));

用这个:

prod.put(Linha[0], prod.get(Linha[0])+Integer.parseInt(Linha[1]));

(这是快速而肮脏的方式 - 如果你没有将哈希映射中的值初始化为0,它将会失败。)你可以通过测试这个条件来避免这种情况:

if (prod.containsKey(Linha[0])) {
    // update value
    prod.put(Linha[0], prod.get(Linha[0])+Integer.parseInt(Linha[1]));
} else {
    // first entry
    prod.put(Linha[0], Integer.parseInt(Linha[1]));
}

这样做的一个优点是您可以随时添加新产品,而无需修改初始化地图的代码。