所以我一直在寻找一种简单的方法来读取文件并在浏览文件时逐行存储每个字符串。我知道如何在Java中使用文件变量进行操作,只需执行file.nextLine()即可进入下一行,直至结束。
想知道是否有一种简单的方法可以做到这一点。我有一个HTML文件,其中包含一个带有输入标记的按钮,用于抓取文件,但我不知道将文件变量存储在JavaScript中的语法,并逐行循环并将每行存储在不同的变量中。 / p>
感谢您的时间和提前的帮助。
<button id="list">List All Recipes</button>
<button id="add">Add Recipe</button>
<input id="inputFile" type="file" style="display: none;" />
<button id="remove">Remove Recipe</button>
<button id="update">Update Recipe</button>
<script>
//variable declaration
var recipeList = [];
//jQuery for button click event
$('#add').on('click', function() {
$('#inputFile').trigger('click');
});
</script>