读取CSV到字符串数组,但单元格包含逗号

时间:2019-03-19 21:39:12

标签: java csv

我正试图用Java编写一个csv读取器,以将csv信息存储到字符串ArrayList中。这是主要部分:

<?php

// lets do redirect if username and password is not empty. you can apply the same principle is your submission is successful

$username = strip_tags($_POST['username']);
$password = strip_tags($_POST['password']);


if ($username != '' && $password !=''){
header('Location: success.php');
exit();
}


?>

某些单元格中包含逗号,并且这些单元格在csv中带有引号。但是,当将每一行写入字符串数组时,带有逗号的单元格会被拆分。我有一种简单的方法来保存带有逗号的单元格吗?

我希望找到一种不涉及更改将单元格分隔为不同字符的逗号的方法。

0 个答案:

没有答案