错误

ASP.NET 导入 Excel

前提是你 提交于 2021-02-10 16:35:43
//导入excel文件 protected void ImportExcel_Click(object sender, EventArgs e) { string getErrorMsg = ""; //FileUpload1是asp.net里文件上传控件的id,加在前台页面 if (!FileUpload1.HasFile) { Response.Write("<script>alert('请选择你要导入的Excel文件');</script>"); return; } //获取文件的后缀名 string fileExt = System.IO.Path.GetExtension(FileUpload1.FileName); if (fileExt != ".xls") { Response.Write("<script>alert('文件类型错误!');</script>"); return; } //这里后面要适配xlsx string fileName = FileUpload1.PostedFile.FileName; FileUpload1.PostedFile.SaveAs(Server.MapPath("PostedFiles/" + fileName)); //这个适配语句是适合excel2007版本以下的 string connstring =

Struts错误笔记

▼魔方 西西 提交于 2020-12-06 05:53:18
错误一 严重: Exception starting filter ServiceStruts2 java.lang.reflect.InvocationTargetException - Class: com.opensymphony.xwork2.inject.ContainerImpl$MethodInjector File: ContainerImpl.java Method: inject Line: 301 - com/opensymphony/xwork2/inject/ContainerImpl.java:301:-1 at org.apache.struts2.dispatcher.Dispatcher.init(Dispatcher.java:483) at org.apache.struts2.dispatcher.FilterDispatcher.init(FilterDispatcher.java:193) at org.apache.catalina.core.ApplicationFilterConfig.initFilter(ApplicationFilterConfig.java:278) at org.apache.catalina.core.ApplicationFilterConfig.getFilter

asp.net调试错误解决方法收集

懵懂的女人 提交于 2020-03-25 19:29:07
3 月,跳不动了?>>> 1.“/MMTest”应用程序中的服务器错误。 -------------------------------------------------------------------------------- 对于不返回任何键列信息的 SelectCommand 不支持 UpdateCommand 的动态 SQL 生成。 说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错 误以及代码中导致错误的出处的详细信息。 异常详细信息: System.InvalidOperationException: 对于不返回任何键列信息的 SelectCommand 不支持 UpdateCommand 的动态 SQL 生成。 源错误: 行 156: public void builderEditClose() 行 157: { 行 158: ada.Update(ds); 行 159: Close(); 行 160: ds.Clear(); 然后就是最后的更新,当然是用DataAdapter的Update()方法借助CommandBuilder来实现,要注意的是,如果你的数据库一开始没有定义主键,那进行更新的时候会出错,返回的错误将是“对于不返回任何键列信息的 SelectCommand 不支持 UpdateCommand 的动态 SQL

错误整理:No plugin found for prefix &apos;jetty&apos; in the....

纵然是瞬间 提交于 2019-12-10 04:59:20
在maven进行jetty的调试中出现错误: [plain] view plain copy print ? [ERROR] No plugin found for prefix 'jetty' in the current project and in the plu gin groups [org.apache.maven.plugins, org.codehaus.mojo] available from the repo sitories [local (C:\Documents and Settings\Administrator\.m2\repository), centra l (http://repo.maven.apache.org/maven2)] -> [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e swit 详情如下: [plain] view plain copy print ? C:\myjava\workspace>mvn jetty:run [INFO] Scanning for projects... [WARNING] Failed to retrieve plugin descriptor for org

Mysql cluster错误收集

╄→гoц情女王★ 提交于 2019-12-07 01:52:14
1、 导入数据的时候遇到如下报错: ERROR 1005 (HY000) at line 25: Can't create table 'tuge.pangolin_fnc_accountverification' (errno: 140) Error | 1296 | Got error 738 'Record too big' from NDB 分析原因:表但行数据太大 解决办法:需要更改表结构,使最大单行数据的大小小于8KB! 2、 导入大量数据的时候遇到如下报错 Error 1297: Got temporary error 'REDO' log overloaded. ERROR : Got temporary error 1204 'Temporary failure, distribution changed' from NDBCLUSTER ERROR : Got temporary error 1234 'REDO log files overloaded (increase disk hardware)' from NDBCLUSTER 分析原因:遇到这个错误,是表示redo log用完了,需要增加 解决办法:修改config.ini文件,更改或添加如下参数: FragmentLogFileSize=256M NoOfFragmentLogFiles=16

windows下 composer常见问题及处理

人走茶凉 提交于 2019-12-05 07:09:44
windows下 composer常见错误及处理。 错误一: Warning: This development build of composer is over 30 days old. It is recommend ed to update it by running "C:\ProgramData\ComposerSetup\bin\composer.phar self- update" to get the latest version. 解决方法: composer selfupdate 如下图: 错误 二: You are running composer with xdebug enabled. This has a major impact on runtime performance. See https://getcomposer.org/xdebug 如图: 解决方法: 打开php.ini,在zend_extension前加分号 ;zend_extension = "d:/wamp/bin/php/php5.5.12/zend_ext/php_xdebug-2.2.5-5.5-vc11-x86_64.dll" 见文档: https://getcomposer.org/doc/articles/troubleshooting.md#xdebug-impact

Git pull时出错

我们两清 提交于 2019-12-05 02:44:38
在使用Git pull命令将远程代码拉取到本地的时候,出现错误,无法拉取。错误如下: Pull is not possible because you have unmerged files. Please, fix them up in the work tree, and then use 'git add/rm <file>' as appropriate to mark resolution, or use 'git commit -a'. 原因: 实际上,git pull命令是将git fetch和git merge两个命令合并起来的一个“综合”命令。 它的作用是:将远程的代码和更新,拉取到本地并且更新本地的代码。其中的一个弊端是,你的本地工作目录在未经确认的情况下就会被远程分支更新,这里我们暂且不提。 正是git merge命令导致出现了上边使用git pull出现的问题。所以这就需要将本地与远程的代码之间的冲突解决掉,才可以进行正常的git pull。下面介绍2个方面的办法: (1)如果想保留本地的修改,使用下面的命令,将文件add,然后commit。 git add -u git commit -m "描述" git pull (2)想保留本地的修改,但是还不想新加一次commit,可以使用git stash命令。 git stash 可用来暂存当前正在进行的工作,

NDK can&apos;t find the application directory

久未见 提交于 2019-12-03 17:39:26
如图错误说是: Android NDK: Could not find application project directory ! Android NDK: Please define the NDK_PROJECT_PATH variable to point to it. 说明没有找到ndk程序的路径。而我的ndk程序都是放在E:\android-ndk-r10b\samples目录下的。 解决方法:通过-c指定程序的路径 使用命令:ndk-build -C your_project_path 来源: oschina 链接: https://my.oschina.net/u/266531/blog/626628

Hadoop配置常见Log错误指导

一世执手 提交于 2019-12-03 14:42:11
Master 节点 Log 篇 1. WARN org.apache.hadoop.hdfs.server.common.Util: Path /usr/mywind/name should be specified as a URI in configuration files. Please update hdfs configuration. 问题定位: hdfs-site.xml 问题原因: 1) 不合规范的URI格式 解决办法: 1) 把dfs.namenode.name.dir、dfs.datanode.data.dir的原路径格式如/usr/mywind/name改成 file: /usr/mywind/name,即使用完全路径。 2. INFO org.apache.hadoop.ipc.Server: IPC Server handler 2 on 9000, call org.apache.hadoop.hdfs.protocol.ClientProtocol.addBlock from 192.168.8.184:39050 Call#6 Retry#0 java.io.IOException: File /hbase/.tmp/hbase.version could only be replicated to 0 nodes instead of

android点滴8:java.lang.ClassNotFoundException

南笙酒味 提交于 2019-12-02 21:42:09
logcat提示错误: FATAL EXCEPTION : main E/AndroidRuntime(405): java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{test.t/test.t.Main01}: java.lang.ClassNotFoundException: test.t.Main01 in loader dalvik.system.PathClassLoader[/data/app/test.t-2.apk] E/AndroidRuntime(405): Caused by: java.lang.ClassNotFoundException: test.t.Main01 in loader dalvik.system.PathClassLoader[/data/app/test.t-2.apk] 并且找不到具体出错的行号,一运行就弹出Sorry界面时问题最有可能出在主配置文件AndroidManifest.xml中,很有可能是你的Activity没有在此文件中注册或者注册时把名字写错了,以至于系统找不到这个Activity,这时注册一下或者改一下名称就可以了,注册方法如下: <activity android:name=".Activity名称" android