我正在通过java脚本读取一个xls文件。
function upload1()
{
var ControlCn = new ActiveXObject("ADODB.Connection");
var Conn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source = C:\\TEST.xls;Persist Security Info=False;Extended Properties=Excel 8.0;";
ControlCn.Open(Conn);
var rs = new ActiveXObject("ADODB.Recordset");
var SQL = "select * from [Sheet1$]";
rs.Open(SQL, ControlCn);
if(rs.bof)
{
document.write('No Data Avaliable');
}
if(!rs.bof)
{
rs.MoveFirst()
while(!rs.eof)
{
for(var i=0; i!= rs.fields.count; ++i)
{
document.write(rs.fields(i).value + ", ");
}
document.write("<br />");
rs.MoveNext()
}
}
rs.Close();
ControlCn.Close();
}
在第三行中,我们给出了我们想要读取的xls文件的路径。是否可以通过一个浏览按钮<input type="flie" ...
答案 0 :(得分:1)
您可以尝试以下方法:
<input type="file" id="myexcelfile"/>
一旦用户浏览文件,您就可以获得如下路径:
var filepath=document.getElementById("myexcelfile").value;
您可以在代码中使用“filepath”变量来传递Excel工作表名称