以下失败,我不明白为什么: $ echo "#!" 以下也失败,同样的错误信息: $ echo "\#!" 错误消息: -bash: !": event not found 为什么会失败? 应该怎么做echo呢?
以下方法: private void startServer() { // snippet that starts the server on the local machine try { RemoteMethodImpl impl = new RemoteMethodImpl(); Naming.rebind( "Illusive-Server" , impl ); }catch(Exception exc) { JOptionPane.showMessageDialog(this, "Problem starting the server", "Error", JOptionPane.ERROR_MESSAGE); System.out.println(exc); } } 抛出这个exception: java.rmi.ServerException: RemoteException occurred in server thread; nested exception is: java.rmi.UnmarshalException: error unmarshalling arguments; nested […]
我试图从Flickr阅读RSS提要,但它有一些简单的XML( media:thumbnail , flickr:profile等)无法读取的节点。 我如何绕过这个? 当我看DOM的文档时,我的头痛了。 所以我想避免它,因为我不想学习。 我试图顺便得到缩略图。
我想知道在Python中是否有类似于PHP的natsort函数? l = ['image1.jpg', 'image15.jpg', 'image12.jpg', 'image3.jpg'] l.sort() 得到: ['image1.jpg', 'image12.jpg', 'image15.jpg', 'image3.jpg'] 但我想得到: ['image1.jpg', 'image3.jpg', 'image12.jpg', 'image15.jpg'] UPDATE 解决scheme基于此链接 def try_int(s): "Convert to integer if possible." try: return int(s) except: return s def natsort_key(s): "Used internally to get a tuple by which s is sorted." import re return map(try_int, re.findall(r'(\d+|\D+)', s)) def natcmp(a, b): […]
我陷入了非常愚蠢的情况:我正在做generics类的新实例,但它返回“怪异”null。 Rule rule2 = new Rule(); // initiate the class Debug.Log(rule2); //1st debug rule2.RuleSetup(r: "CaughtEnough", li: 0); //setting up the parameters Debug.Log(rule2.rule); //2nd debug 第一次debugging给了我 null UnityEngine.Debug:Log(Object) 同时设置参数工作,第二次debugging给我 CaughtEnough UnityEngine.Debug:Log(Object) 这是什么应该是在适当的类实例。 它给我带来的一个(只是迄今为止)的问题是,如果白我这个规则类实例我打电话 Invoke(rule, 0f); 它给了我NullReferenceException错误。 但同时也是实际的function CaughtEnough(); 工作正常,如预期。 任何想法可能是问题的根源,以及如何克服它? UPD也发布规则类的设置部分,如问,虽然它很简单 public class Rule : MonoBehaviour { public string rule; public int leftInt; public Dictionary<string, int> […]
PostgreSQL性能的一个奇怪的问题,查询,使用PostgreSQL的8.4.9。 此查询是在3D卷内select一组点,使用LEFT OUTER JOIN添加相关的ID列,其中存在相关的ID。 x范围的小改动可以使PostgreSQLselect一个不同的查询计划,这个计划的执行时间从0.01秒到50秒。 这是问题的查询: SELECT treenode.id AS id, treenode.parent_id AS parentid, (treenode.location).x AS x, (treenode.location).y AS y, (treenode.location).z AS z, treenode.confidence AS confidence, treenode.user_id AS user_id, treenode.radius AS radius, ((treenode.location).z – 50) AS z_diff, treenode_class_instance.class_instance_id AS skeleton_id FROM treenode LEFT OUTER JOIN (treenode_class_instance INNER JOIN class_instance ON treenode_class_instance.class_instance_id = class_instance.id AND class_instance.class_id = […]
我试图写一个合理的宽容validation器的名称在PHP中,我的第一次尝试包括以下模式: // unicode letters, apostrophe, hyphen, space $namePattern = "/^([\\p{L}'\\- ])+$/"; 这最终传递给preg_match()的调用。 据我所知,这与你的香草ASCII字母表一起工作,但似乎在sp或张之类的更为棘手的字符上绊倒。 模式本身有什么问题吗? 也许我希望\p{L}做比我想象的更多的工作? 或者它与传入input的方式有什么关系? 我不确定它是否相关,但确实在表单页面上指定了UTF8编码。
我正在使用基于泽西的宁静服务实施策略来build立一个服务,将用于上传文件。 我的服务类名称是:UploadFileService.java(请参阅下面的代码) package com.jerser.service; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import javax.ws.rs.Consumes; import javax.ws.rs.POST; import javax.ws.rs.Path; import javax.ws.rs.core.MediaType; import javax.ws.rs.core.Response; import com.sun.jersey.core.header.FormDataContentDisposition; import com.sun.jersey.multipart.FormDataParam; @Path("/fileUpload") public class UploadFileService { @POST @Path("/upload") @Consumes(MediaType.MULTIPART_FORM_DATA) public Response uploadFile( @FormDataParam("file") InputStream uploadedInputStream, @FormDataParam("file") FormDataContentDisposition fileDetail) { String uploadedFileLocation = "d://uploaded/" + fileDetail.getFileName(); // save it […]
假设我想在表格中存储数千天,我将如何从日历中检索它?
我遇到了一个问题,在JavaScript中带引号的string中有一个结束脚本标记,并且正在查杀脚本。 我认为这不是预期的行为。 这个例子可以在这里看到: http : //jsbin.com/oqepe/edit 我对testing用例的浏览器感兴趣:Mozilla / 5.0(X11; U; Linux i686; en-US; rv:1.9.1.4)Gecko / 20091028 Ubuntu / 9.10(karmic)Firefox / 3.5.4。