08 2022 档案

摘要:今天打开Eclipse时弹出一个错误提示,无法正常打开。 “Version 1.8.0_131 of the JVM is not suitable for this product. Version: 11 or greater is required.” 之前印象中是可以正常打开的。 起初以为是 阅读全文
posted @ 2022-08-31 10:21 wzwyc 阅读(3621) 评论(1) 推荐(1) 编辑
摘要:之前自己做了一个小的播放器软件,缺少字幕的功能有时候很不方面,研究了一下,把SRT字幕的功能加上了。 SRT本身其实就是一个纯文本文件,只需要按照他的规则去解析就可以了。 附上我的实现代码,供大家参考: using JcPlayer.Models; using System; using Syste 阅读全文
posted @ 2022-08-31 08:33 wzwyc 阅读(472) 评论(0) 推荐(0) 编辑
摘要:在处理一些交互事件的时候,很容易出现单击或双击,不小心触发了多次的问题。 目前没有找到很好的处理办法。于是想着自己封装一个类。 public class EventResponseController { private static EventResponseController _instanc 阅读全文
posted @ 2022-08-03 12:47 wzwyc 阅读(355) 评论(0) 推荐(0) 编辑